Home | History | Annotate | Download | only in wtf

Lines Matching defs:destructor

34  *   @ In pthread implementation, the destructor function will be called
36 * @ In Windows native implementation, the destructor function will be called
80 // a destructor defined can be confusing, given that it has such strong pre-requisites to work correctly.
95 void (*destructor)(void*);
110 inline void threadSpecificKeyCreate(ThreadSpecificKey* key, void (*destructor)(void *))
112 int error = pthread_key_create(key, destructor);
196 // Does not invoke destructor functions. They will be called from ThreadSpecificThreadExit when the thread is detached.
212 data->destructor = &ThreadSpecific<T>::destroy;
226 // We want get() to keep working while data destructor works, because it can be called indirectly by the destructor.