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
Is your feature request related to a problem? Please describe.
RTEMS 6.x removes the legacy network stack by default, and in doing so, removes the "select" call. Now, when the OSAL OSAL_CONFIG_INCLUDE_NETWORK option is set to FALSE, the OSAL/cFS build fails because it still expects a select call.
Describe the solution you'd like
I have implemented a src/os/portable/os-impl-no-select.c file along with the corresponding changes to the CMakeLists.txt file that uses os-impl-no-select.c when the INCLUDE_NETWORK option is FALSE, otherwise it uses os-impl-bsd-select.c as usual.
Requester Info
Alan Cudmore / NASA GSFC / Code 582.0
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
RTEMS 6.x removes the legacy network stack by default, and in doing so, removes the "select" call. Now, when the OSAL OSAL_CONFIG_INCLUDE_NETWORK option is set to FALSE, the OSAL/cFS build fails because it still expects a select call.
Describe the solution you'd like
I have implemented a src/os/portable/os-impl-no-select.c file along with the corresponding changes to the CMakeLists.txt file that uses os-impl-no-select.c when the INCLUDE_NETWORK option is FALSE, otherwise it uses os-impl-bsd-select.c as usual.
Requester Info
Alan Cudmore / NASA GSFC / Code 582.0
The text was updated successfully, but these errors were encountered: