• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/dcerpc-58/dcerpc/libdcethread/

Lines Matching refs:thread

90     /* Current state of thread
118 /* Is the thread currently interruptible? */
120 /* Is the thread currently locked? (for debugging) */
127 /* Function to perform an interruption on this thread.
130 Returns 1 if the thread is definitely interrupted,
132 int (*interrupt)(dcethread* thread, void* data);
138 This function is invoked within this thread when
141 void (*handle_interrupt)(dcethread* thread, void* data);
161 void dcethread__delete(dcethread* thread);
163 void dcethread__init_self(dcethread* thread);
164 void dcethread__retain(dcethread* thread);
165 void dcethread__release(dcethread* thread);
166 void dcethread__lock(dcethread* thread);
168 void dcethread__wait(dcethread* thread);
169 void dcethread__timedwait(dcethread* thread, struct timespec* ts);
170 void dcethread__change_state(dcethread* thread, int state);
173 void dcethread__dispatchinterrupt(dcethread* thread);
174 void dcethread__interrupt(dcethread* thread);
175 void dcethread__set_interrupt_handler(dcethread* thread, void (*handle_interrupt)(dcethread*, void*), void* data);
176 int dcethread__begin_block(dcethread* thread, int (*interrupt)(dcethread*, void*), void* data, int (**old_interrupt)(dcethread*, void*), void** old_data);
177 int dcethread__poll_end_block(dcethread* thread, int (*interrupt)(dcethread*, void*), void* data);
178 int dcethread__end_block(dcethread* thread, int (*interrupt)(dcethread*, void*), void* data);
179 int dcethread__interrupt_syscall(dcethread* thread, void* data);
180 int dcethread__interrupt_condwait(dcethread* thread, void* data);