Tagged Questions
2
votes
2answers
573 views
C : how pthread dataspecific works?
I'm not sure about how pthread dataspecific works : considering the next code (found on the web), does this means i can create for example 5 threads in the main, have a call to func in only some of ...
1
vote
2answers
700 views
C : pthread dataspecific destructor called only once
From pthread_key_create manpage :
An optional destructor function may
be associated with each key value. At
thread exit, if a key value has a
non-NULL destructor pointer, and the
thread ...