MCPcopy Create free account
hub / github.com/OpenPrinting/cups / _cupsThreadWait

Function _cupsThreadWait

cups/thread.c:205–215  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

203 */
204
205void * /* O - Return value */
206_cupsThreadWait(_cups_thread_t thread) /* I - Thread ID */
207{
208 void *ret; /* Return value */
209
210
211 if (pthread_join(thread, &ret))
212 return (NULL);
213 else
214 return (ret);
215}
216
217
218#elif defined(_WIN32)

Callers 3

do_testFunction · 0.85
run_clientFunction · 0.85
enum_dests_cbFunction · 0.85

Calls

no outgoing calls

Tested by 2

run_clientFunction · 0.68
enum_dests_cbFunction · 0.68