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

CFE_SB_AllocateMessageBuffer() fails in multi-threaded context #824

Open
arya-pathak opened this issue Feb 23, 2025 · 3 comments
Open

CFE_SB_AllocateMessageBuffer() fails in multi-threaded context #824

arya-pathak opened this issue Feb 23, 2025 · 3 comments

Comments

@arya-pathak
Copy link

I am running cFS over Linux on an x86-64 machine. In the main function of my cFS app, I have created a thread through pthread_create(). Inside this thread, I read from a socket, and on receiving data I call another function that sends this data over the software bus. However, here the call to CFE_SB_AllocateMessageBuffer() always fails and returns NULL. On further inspection, the call to CFE_ES_GetAppID() is failing. This was never happening when the app was single-threaded. Any fixes for this?

CC: @rkshthrmsh

@jphickey
Copy link
Contributor

Don't use pthread_create. Use CFE_ES_CreateChildTask to create child tasks in your app.

@arya-pathak
Copy link
Author

This fixes the issue, thanks. Why does a newly created thread from native OS APIs lose context?

@arya-pathak
Copy link
Author

Could you help me understand the consequences of using native OS APIs instead of cFE/OSAL-specific ones? For operations tarring or copying files, I'm using system("cp a b"); or system("tar -xvf cpu1.tar.xz"); and these are behaving unreliably. Is there any way to do this through OSAL/cFE APIs? If not, is it dangerous to use Linux' system() function?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants