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 #1449, POSIX implementation honors stack pointer #1450

Merged
merged 2 commits into from
Feb 29, 2024

Commits on Feb 14, 2024

  1. Fix nasa#1449, POSIX implementation honors stack pointer

    When the OS_TaskCreate() function is called with a non-NULL stack pointer,
    the POSIX implementation now should use this pointer as intended.  Previously
    it was always allocating a new stack buffer, ignoring the passed-in pointer.
    
    NOTE: When using this feature, the caller must use caution to make sure the
    buffer being passed in is large enough to use as a task stack.  Particularly
    when running under a desktop Linux/Glibc environment, the infrastructure
    puts a considerably large object on the stack.  For example, in the
    osal-core-tests, the stack size was too small.
    jphickey committed Feb 14, 2024
    Configuration menu
    Copy the full SHA
    e0d3d5a View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2024

  1. Configuration menu
    Copy the full SHA
    d9ad6c4 View commit details
    Browse the repository at this point in the history