thread 9 misc/cgo/test/issue6997_linux.c static pthread_t thread; thread 18 misc/cgo/test/issue6997_linux.c return pthread_create(&thread, NULL, &threadfunc, NULL); thread 23 misc/cgo/test/issue6997_linux.c pthread_cancel(thread); thread 24 misc/cgo/test/issue6997_linux.c pthread_join(thread, &r); thread 24 src/pkg/runtime/cgo/gcc_openbsd_386.c static int (*sys_pthread_create)(pthread_t *thread, const pthread_attr_t *attr, thread 69 src/pkg/runtime/cgo/gcc_openbsd_386.c pthread_create(pthread_t *thread, const pthread_attr_t *attr, thread 82 src/pkg/runtime/cgo/gcc_openbsd_386.c return sys_pthread_create(thread, attr, thread_start_wrapper, p); thread 24 src/pkg/runtime/cgo/gcc_openbsd_amd64.c static int (*sys_pthread_create)(pthread_t *thread, const pthread_attr_t *attr, thread 69 src/pkg/runtime/cgo/gcc_openbsd_amd64.c pthread_create(pthread_t *thread, const pthread_attr_t *attr, thread 82 src/pkg/runtime/cgo/gcc_openbsd_amd64.c return sys_pthread_create(thread, attr, thread_start_wrapper, p); thread 88 src/pkg/runtime/os_solaris.c int32 runtime·pthread_create(Pthread* thread, PthreadAttr* attr, void(*fn)(void), void *arg); thread 492 src/pkg/runtime/os_solaris.c runtime·pthread_create(Pthread* thread, PthreadAttr* attr, void(*fn)(void), void *arg) thread 494 src/pkg/runtime/os_solaris.c return runtime·sysvicall6(libc·pthread_create, 4, (uintptr)thread, (uintptr)attr, (uintptr)fn, (uintptr)arg); thread 259 src/pkg/runtime/os_windows.c runtime·atomicstorep(&m->thread, thandle); thread 428 src/pkg/runtime/os_windows.c runtime·stdcall(runtime·GetThreadContext, 2, mp->thread, r); thread 436 src/pkg/runtime/os_windows.c void *thread; thread 445 src/pkg/runtime/os_windows.c thread = runtime·atomicloadp(&mp->thread); thread 449 src/pkg/runtime/os_windows.c if(thread == nil || mp->profilehz == 0 || mp->blocked) thread 451 src/pkg/runtime/os_windows.c runtime·stdcall(runtime·SuspendThread, 1, thread); thread 454 src/pkg/runtime/os_windows.c runtime·stdcall(runtime·ResumeThread, 1, thread); thread 463 src/pkg/runtime/os_windows.c void *timer, *thread; thread 471 src/pkg/runtime/os_windows.c thread = runtime·stdcall(runtime·CreateThread, 6, thread 473 src/pkg/runtime/os_windows.c runtime·stdcall(runtime·CloseHandle, 1, thread); thread 351 src/pkg/runtime/runtime.h void* thread; // thread handle thread 108 test/bench/shootout/threadring.c pthread_create(&cthread, &stack_attr, thread, (void*)(uintptr_t)i);