Add RAM-based configurable thread stack size#227
Add RAM-based configurable thread stack size#227Tarun Balaji Nidiganti (tnidigan) wants to merge 1 commit into
Conversation
| int8_t isCoreThread; | ||
| }; | ||
|
|
||
| ThreadArgs* args = new ThreadArgs{this, isCoreThread}; |
Check failure
Code scanning / CodeQL
Incorrect allocation-error handling High
| thNode->usePthread = 1; | ||
| } else { | ||
| // Use default std::thread creation | ||
| thNode->th = new std::thread(threadStartRoutine, isCoreThread); |
Check failure
Code scanning / CodeQL
Incorrect allocation-error handling High
|
This pull request has been marked as stale due to 60 days of inactivity. To prevent automatic closure in 10 days, remove the stale label or add a comment. You can reopen a closed pull request at any time. |
|
Merge Check Failed: No CR Numbers Found Error: No Change Request numbers were found. Please add Change Request numbers to your pull request description in the format CRs-Fixed: 12345 or link GitHub issues that are associated with Change Requests. |
|
Merge Check Failed: No CR Numbers Found Error: No Change Request numbers were found. Please add Change Request numbers to your pull request description in the format CRs-Fixed: 12345 or link GitHub issues that are associated with Change Requests. |
This PR implements dynamic thread stack size based on system RAM.
Changes