| /src/external/bsd/jemalloc/dist/test/src/ |
| thd.c | 5 thd_create(thd_t *thd, void *(*proc)(void *), void *arg) { 7 *thd = CreateThread(NULL, 0, routine, arg, 0, NULL); 8 if (*thd == NULL) { 14 thd_join(thd_t thd, void **ret) { 15 if (WaitForSingleObject(thd, INFINITE) == WAIT_OBJECT_0 && ret) { 17 GetExitCodeThread(thd, (LPDWORD) &exit_code); 24 thd_create(thd_t *thd, void *(*proc)(void *), void *arg) { 25 if (pthread_create(thd, NULL, proc, arg) != 0) { 31 thd_join(thd_t thd, void **ret) { 32 pthread_join(thd, ret) [all...] |
| /src/external/bsd/jemalloc.old/dist/test/src/ |
| thd.c | 5 thd_create(thd_t *thd, void *(*proc)(void *), void *arg) { 7 *thd = CreateThread(NULL, 0, routine, arg, 0, NULL); 8 if (*thd == NULL) { 14 thd_join(thd_t thd, void **ret) { 15 if (WaitForSingleObject(thd, INFINITE) == WAIT_OBJECT_0 && ret) { 17 GetExitCodeThread(thd, (LPDWORD) &exit_code); 24 thd_create(thd_t *thd, void *(*proc)(void *), void *arg) { 25 if (pthread_create(thd, NULL, proc, arg) != 0) { 31 thd_join(thd_t thd, void **ret) { 32 pthread_join(thd, ret) [all...] |
| /src/external/bsd/jemalloc/dist/test/include/test/ |
| thd.h | 8 void thd_create(thd_t *thd, void *(*proc)(void *), void *arg); 9 void thd_join(thd_t thd, void **ret);
|
| /src/external/bsd/jemalloc.old/dist/test/include/test/ |
| thd.h | 8 void thd_create(thd_t *thd, void *(*proc)(void *), void *arg); 9 void thd_join(thd_t thd, void **ret);
|
| /src/external/bsd/jemalloc.old/dist/test/unit/ |
| tsd.c | 73 thd_t thd; local 76 thd_create(&thd, thd_start, (void *)MALLOC_TSD_TEST_DATA_INIT); 77 thd_join(thd, NULL); 121 thd_t thd; local 122 thd_create(&thd, thd_start_reincarnated, NULL); 123 thd_join(thd, NULL);
|
| stats.c | 137 thd_t thd; local 139 thd_create(&thd, thd_start, NULL); 140 thd_join(thd, NULL);
|
| /src/external/bsd/jemalloc/dist/test/integration/ |
| thread_tcache_enabled.c | 71 thd_t thd; local 73 thd_create(&thd, thd_start, NULL); 74 thd_join(thd, NULL);
|
| allocated.c | 108 thd_t thd; local 110 thd_create(&thd, thd_start, NULL); 111 thd_join(thd, NULL);
|
| mallocx.c | 104 thd_t thd; local 106 thd_create(&thd, remote_alloc, (void *)&ret); 107 thd_join(thd, NULL);
|
| smallocx.c | 128 thd_t thd; local 130 thd_create(&thd, remote_alloc, (void *)&ret); 131 thd_join(thd, NULL);
|
| /src/external/bsd/jemalloc.old/dist/test/integration/ |
| thread_tcache_enabled.c | 71 thd_t thd; local 73 thd_create(&thd, thd_start, NULL); 74 thd_join(thd, NULL);
|
| allocated.c | 108 thd_t thd; local 110 thd_create(&thd, thd_start, NULL); 111 thd_join(thd, NULL);
|
| /src/external/bsd/openldap/dist/libraries/libldap/ |
| thr_nt.c | 36 HANDLE thd; member in struct:ldap_int_thread_s 80 HANDLE thd; local 83 thd = (HANDLE) _beginthreadex(NULL, LDAP_PVT_THREAD_STACK_SIZE, (thrfunc_t *) start_routine, 86 if ( thd ) { 89 tids[ntids].thd = thd; 114 status = WaitForSingleObject( tids[i].thd, INFINITE );
|
| /src/external/bsd/jemalloc/dist/test/unit/ |
| tsd.c | 85 thd_t thd; local 88 thd_create(&thd, thd_start, (void *)MALLOC_TSD_TEST_DATA_INIT); 89 thd_join(thd, NULL); 133 thd_t thd; local 134 thd_create(&thd, thd_start_reincarnated, NULL); 135 thd_join(thd, NULL); 207 thd_t thd; local 208 thd_create(&thd, thd_start_global_slow, (void *)&data.phase); 257 thd_join(thd, NULL);
|
| prof_recent.c | 563 thd_t thd; member in struct:__anon4484 637 thd_create(&data_p->thd, &f_thread, &data_p->id); 641 thd_join(data_p->thd, NULL); 650 thd_create(&data_p->thd, &f_thread, &data_p->id); 654 thd_join(data_p->thd, NULL);
|
| stats.c | 141 thd_t thd; local 143 thd_create(&thd, thd_start, NULL); 144 thd_join(thd, NULL);
|