Lines Matching defs:thread_args
450 DrdPosixThreadArgs thread_args;
455 thread_args.start = start;
456 thread_args.arg = arg;
457 thread_args.wrapper_started = &wrapper_started;
463 thread_args.detachstate = PTHREAD_CREATE_JOINABLE;
466 if (pthread_attr_getdetachstate(attr, &thread_args.detachstate) != 0)
469 assert(thread_args.detachstate == PTHREAD_CREATE_JOINABLE
470 || thread_args.detachstate == PTHREAD_CREATE_DETACHED);
473 CALL_FN_W_WWWW(ret, fn, thread, attr, DRD_(thread_wrapper), &thread_args);