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
stat = pthread_create(tid, &att, pthread_entry_wrapper, arg);
If pthread_create() fails, fprime checks for failure. But if it did fail, it tries to pthread_join(). THIS causes a segfault. There is no valid thread (because we couldn't create it), so any operation on it will crash.
The text was updated successfully, but these errors were encountered:
Look here:
fprime/Os/Posix/Task.cpp
Line 161 in 91c578e
If
pthread_create()
fails, fprime checks for failure. But if it did fail, it tries topthread_join()
. THIS causes a segfault. There is no valid thread (because we couldn't create it), so any operation on it will crash.The text was updated successfully, but these errors were encountered: