You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
For RTEMS and POSIX this is not an issue because these implementations will just use a minimum stack size, but VxWorks actually creates the task with a very small stack. The worker tasks are then likely to overrun the stack, causing undefined behavior.
To Reproduce
Execute sem-speed-test on the MPC750 test platform
Observe inconsistent behavior during/after test (sometimes it completes OK, sometimes errors, occasionally even a reboot).
Expected behavior
The test should complete successfully.
System observed on:
MCP750, VxWorks 6.9
Reporter Info
Joseph Hickey, Vantage Systems, Inc.
The text was updated successfully, but these errors were encountered:
On VxWorks, no minimum stack size is implemented,
and the implementation will create tasks with an
extremely small stack if "0" is passed in.
This causes the worker tasks to overrun the stack
on Vxworks, triggering undefined/inconsistent
behavior.
On VxWorks, no minimum stack size is implemented,
and the implementation will create tasks with an
extremely small stack if "0" is passed in.
This causes the worker tasks to overrun the stack
on Vxworks, triggering undefined/inconsistent
behavior.
Describe the bug
For RTEMS and POSIX this is not an issue because these implementations will just use a minimum stack size, but VxWorks actually creates the task with a very small stack. The worker tasks are then likely to overrun the stack, causing undefined behavior.
To Reproduce
Execute sem-speed-test on the MPC750 test platform
Observe inconsistent behavior during/after test (sometimes it completes OK, sometimes errors, occasionally even a reboot).
Expected behavior
The test should complete successfully.
System observed on:
MCP750, VxWorks 6.9
Reporter Info
Joseph Hickey, Vantage Systems, Inc.
The text was updated successfully, but these errors were encountered: