Lines Matching defs:thread
209 pthread_t thread;
214 pthread_create(&thread, NULL,
219 pthread_join(thread, NULL);
411 /* Test mapped buffer access from a custom thread */
420 pthread_t thread;
431 pthread_create(&thread, NULL, thread_buffer_access_test_helper,
433 pthread_join(thread, NULL);
458 pthread_t thread;
470 /* The thread does something, does not matter what exactly. */
471 pthread_create(&thread, NULL, thread_test_helper, __UNVOLATILE(buf));
477 "Records changed in blocked thread");
479 pthread_join(thread, NULL);
515 pthread_t thread[32];
521 * Verifying it on a per-thread basis is flaky.
526 ATF_REQUIRE(__arraycount(thread) >= N);
529 pthread_create(&thread[i], NULL, multiple_threads_helper, NULL);
532 pthread_join(thread[i], NULL);