Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #506, enforce nonzero stack size #508

Merged

Conversation

jphickey
Copy link
Contributor

Describe the contribution
Resolve inconsistency in how the stack size is treated across different OS implemntations. POSIX would enforce a minimum, where RTEMS would not.

With this change the user requested size is passed through to the underlying OS exactly as is, no enforced minimum.

An additional sanity check is added at the shared layer to ensure that the stack size is never passed as 0.

Fixes #506

Testing performed
Build and execute CFE and sanity test
Build and execute all unit tests.
Also tested creating a task with zero stack size and confirm error is generated on Linux.

Expected behavior changes
The idmap-api-test passes on RTEMS.
Attempting to create a task with zero stack now will result in error.

System(s) tested on
Ubuntu 20.04
RTEMS 4.11.3 via QEMU/pc686

Contributor Info - All information REQUIRED for consideration of pull request
Joseph Hickey, Vantage Systems, Inc.

Resolve inconsistency in how the stack size is treated across
different OS implemntations.  POSIX would enforce a minimum,
where RTEMS would not.

With this change the user requested size is passed through
to the underlying OS exactly as is, no enforced minimum.

An additional sanity check is added at the shared layer to
ensure that the stack size is never passed as 0.
@jphickey jphickey added the CCB:Ready Pull request is ready for discussion at the Configuration Control Board (CCB) label Jun 16, 2020
@astrogeco
Copy link
Contributor

CCB 2020-06-17: APPROVED

@astrogeco astrogeco removed the CCB:Ready Pull request is ready for discussion at the Configuration Control Board (CCB) label Jun 18, 2020
@astrogeco astrogeco changed the base branch from master to integration-candidate June 22, 2020 19:44
@astrogeco astrogeco added CCB:Approved Indicates code review and approval by community CCB IC-20200617 labels Jun 22, 2020
@astrogeco astrogeco merged commit 0689616 into nasa:integration-candidate Jun 23, 2020
jphickey added a commit to jphickey/osal that referenced this pull request Jun 29, 2020
The pthread_attr_setstacksize() function stipulates that it
may fail if the user-supplied stack size is not at least
PTHREAD_STACK_MIN and also possibly a multiple of page size.

This partially reverts previous PR nasa#508 and adds back rounding
up to PTHREAD_STACK_MIN and also adds rounding up to a system
page size.  However the check for zero stack still remains
at the shared level so attempts to create a task with zero
stack will still fail.  This allows internal helper threads
to be created with a default minimum stack size, however.
jphickey added a commit to jphickey/osal that referenced this pull request Jun 30, 2020
The pthread_attr_setstacksize() function stipulates that it
may fail if the user-supplied stack size is not at least
PTHREAD_STACK_MIN and also possibly a multiple of page size.

This partially reverts previous PR nasa#508 and adds back rounding
up to PTHREAD_STACK_MIN and also adds rounding up to a system
page size.  However the check for zero stack still remains
at the shared level so attempts to create a task with zero
stack will still fail.  This allows internal helper threads
to be created with a default minimum stack size, however.
@skliper skliper added this to the 5.1.0 milestone Aug 21, 2020
@jphickey jphickey deleted the fix-506-task-stacksize branch December 3, 2020 17:26
jphickey pushed a commit to jphickey/osal that referenced this pull request Aug 10, 2022
jphickey pushed a commit to jphickey/osal that referenced this pull request Aug 10, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CCB:Approved Indicates code review and approval by community CCB
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Idmap API test needs to use real task stack size and priority
3 participants