Searched refs:wait_thread (Results 1 - 7 of 7) sorted by relevance
/third_party/ltp/testcases/kernel/syscalls/mmap/ |
H A D | mmap11.c | 63 static void *wait_thread(void *args); 111 ret = pthread_create(&th, &attr, wait_thread, NULL); in check() 128 void *wait_thread(void *args) in wait_thread() function
|
/third_party/ltp/testcases/kernel/mem/mtest05/ |
H A D | mmstress.c | 126 static volatile int wait_thread; /* used to wake up sleeping threads */ variable 216 while (wait_thread) in thread_fault() 366 wait_thread = TRUE; in map_and_thread() 409 wait_thread = FALSE; in map_and_thread()
|
/third_party/musl/src/aio/ |
H A D | lio_listio.c | 53 static void *wait_thread(void *p) in wait_thread() function 134 if (pthread_create(&td, &a, wait_thread, st)) { in lio_listio()
|
/third_party/musl/porting/liteos_a/user/src/aio/ |
H A D | lio_listio.c | 53 static void *wait_thread(void *p) in wait_thread() function 135 if (pthread_create(&td, &a, wait_thread, st)) { in lio_listio()
|
/third_party/libdrm/tests/amdgpu/ |
H A D | syncobj_tests.c | 224 static pthread_t wait_thread; in amdgpu_syncobj_timeline_test() local 242 r = pthread_create(&wait_thread, NULL, syncobj_wait, &sp1); in amdgpu_syncobj_timeline_test() 251 r = pthread_join(wait_thread, &tmp); in amdgpu_syncobj_timeline_test()
|
/third_party/mesa3d/src/vulkan/wsi/ |
H A D | wsi_common_display.c | 111 pthread_t wait_thread; member 1287 if (!wsi->wait_thread) { in wsi_display_start_wait_thread() 1288 int ret = pthread_create(&wsi->wait_thread, NULL, in wsi_display_start_wait_thread() 1300 if (wsi->wait_thread) { in wsi_display_stop_wait_thread() 1301 pthread_cancel(wsi->wait_thread); in wsi_display_stop_wait_thread() 1302 pthread_join(wsi->wait_thread, NULL); in wsi_display_stop_wait_thread() 1303 wsi->wait_thread = 0; in wsi_display_stop_wait_thread()
|
/third_party/python/Lib/test/ |
H A D | lock_tests.py | 42 self.wait_thread = threading_helper.wait_threads_exit() 43 self.wait_thread.__enter__() 70 self.wait_thread.__exit__(None, None, None)
|
Completed in 9 milliseconds