Documentation incorrectly states that C++ new and delete operators are unsupported #43636
Labels
area: C++
area: Documentation
bug
The issue is a bug, or the PR is fixing a bug
priority: low
Low impact/importance bug
Milestone
Issue Description
The RTOS documentation, C++ Support for Applications, indicates that C++ Dynamic Objects can't be managed using
new
/delete
operators. However, there is a test case attests/subsys/cpp/cxx
for them. Also,new
/delete
operators are implemented atsubsys/cpp/cpp_new.cpp
which eventually resolve intomalloc
/free
respectively both of which are mutex protected. Is there any specific reason due to which they are marked as not supported in the document?Expected behavior
Document should have more information regarding C++
new
/delete
supportThe text was updated successfully, but these errors were encountered: