Lines Matching full:thread_args
455 DrdPosixThreadArgs thread_args;
460 thread_args.start = start;
461 thread_args.arg = arg;
462 thread_args.wrapper_started = &wrapper_started;
468 thread_args.detachstate = PTHREAD_CREATE_JOINABLE;
471 thread_args.detachstate) != 0)
474 assert(thread_args.detachstate == PTHREAD_CREATE_JOINABLE
475 || thread_args.detachstate == PTHREAD_CREATE_DETACHED);
478 CALL_FN_W_WWWW(ret, fn, thread, attr, DRD_(thread_wrapper), &thread_args);