Home | History | Annotate | Download | only in X11

Lines Matching refs:closure

47 #  define xthread_fork(func,closure) cthread_fork(func,closure)
76 # define xthread_fork(func,closure) thr_create(NULL,0,func,closure,THR_NEW_LWP|THR_DETACHED,NULL)
112 # define xthread_fork(func,closure) { \
114 CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)func, (LPVOID)closure, 0, \
172 # define xthread_fork(func,closure) { pthread_t _tmpxthr; \
173 pthread_create(&_tmpxthr,NULL,func,closure); }
202 # define xthread_fork(func,closure) { thr_t _tmpxthr; \
204 thr_create(&_tmpxthr,NULL,func,closure); }
238 # define xthread_fork(func,closure) { pthread_t _tmpxthr; \
239 pthread_create(&_tmpxthr,NULL,func,closure); }
247 # define xthread_fork(func,closure) { pthread_t _tmpxthr; \
248 pthread_create(&_tmpxthr,pthread_attr_default,func,closure); }