PThread - signal not supported, so, how can we know when a Thread finish its work #16803
Unanswered
aharondavid
asked this question in
Q&A
Replies: 2 comments
-
You can use shared memory to communicate between threads, either by using atomic memory accesses or via pthread APIs such as pthread_mutex and pthread_cont. Perhaps you are mixing up POSIX signals (which are not well supported) with pthread_cond_signal() (which is well supported?) |
Beta Was this translation helpful? Give feedback.
0 replies
-
Ok, I will investigate that... |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
According to documentation, PThread signal is not supported.
so, is there a way to get an event about Thread that finish its works ?
Beta Was this translation helpful? Give feedback.
All reactions