mirror of
https://github.com/wichtounet/thor-os.git
synced 2025-09-10 21:14:38 -04:00
2
CPP Limitations
Baptiste Wicht edited this page 2013-12-15 13:02:53 -08:00
As C++ is loaded using no standard library, a lot of features are not available:
- Exceptions
- RTTI
- The STL and the C standard lib
Here are the features that are supported specifically:
- Dynamic Memory allocation via new and delete
- Dynamic Memory allocation with k_malloc and k_free directly
- Global static constructors and destructors are not called