Home
last modified time | relevance | path

Searched refs:hThread (Results 1 – 11 of 11) sorted by relevance

/openbsd/src/gnu/llvm/llvm/lib/Support/Windows/
DThreading.inc30 HANDLE hThread = (HANDLE)::_beginthreadex(NULL, StackSizeInBytes.value_or(0),
33 if (!hThread) {
37 return hThread;
40 void llvm_thread_join_impl(HANDLE hThread) {
41 if (::WaitForSingleObject(hThread, INFINITE) == WAIT_FAILED) {
46 void llvm_thread_detach_impl(HANDLE hThread) {
47 if (::CloseHandle(hThread) == FALSE) {
52 DWORD llvm_thread_get_id_impl(HANDLE hThread) { return ::GetThreadId(hThread); }
DSignals.inc121 HANDLE hThread,
234 HANDLE hProcess, HANDLE hThread,
249 while (fStackWalk64(NativeMachineType, hProcess, hThread, &StackFrame,
306 HANDLE hThread, STACKFRAME64 &StackFrame,
321 if (printStackTraceWithLLVMSymbolizer(OS, hProcess, hThread, StackFrame,
327 if (!fStackWalk64(NativeMachineType, hProcess, hThread, &StackFrame,
DProgram.inc313 ScopedCommonHandle hThread(pi.hThread);
344 ::ResumeThread(pi.hThread);
/openbsd/src/gnu/llvm/lldb/source/Host/windows/
DProcessLauncherWindows.cpp131 ::CloseHandle(pi.hThread); in LaunchProcess()
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/
DDebuggerThread.cpp360 HostThread thread(info.hThread); in HandleCreateThreadEvent()
384 m_main_thread = HostThread(info.hThread); in HandleCreateProcessEvent()
/openbsd/src/gnu/llvm/compiler-rt/lib/sanitizer_common/
Dsanitizer_symbolizer_win.cpp272 CloseHandle(pi.hThread); in StartSymbolizerSubprocess()
/openbsd/src/gnu/usr.bin/binutils/gdb/
Dwin32-nat.c1219 current_event.u.CreateThread.hThread); in fake_create_process()
1268 current_event.u.CreateThread.hThread); in get_child_debug_event()
1306 current_event.u.CreateProcessInfo.hThread); in get_child_debug_event()
1885 CloseHandle (pi.hThread); in child_create_inferior()
Dwince.c1392 current_event.u.CreateThread.hThread); in get_child_debug_event()
1418 current_event.u.CreateProcessInfo.hThread); in get_child_debug_event()
1768 child_add_thread (pi.dwThreadId, pi.hThread); in child_create_inferior()
/openbsd/src/gnu/llvm/llvm/utils/KillTheDoctor/
DKillTheDoctor.cpp464 ::CloseHandle(DebugEvent.u.CreateThread.hThread); in main()
/openbsd/src/gnu/usr.bin/perl/win32/
Dwin32.c2950 HANDLE hThread = w32_pseudo_child_handles[child]; in win32_waitpid() local
2952 win32_msgwait(aTHX_ 1, &hThread, timeout, &waitcode); in win32_waitpid()
2957 if (GetExitCodeThread(hThread, &waitcode)) { in win32_waitpid()
4677 CloseHandle(ProcessInformation.hThread); in do_spawnvp_handles()
/openbsd/src/gnu/usr.bin/perl/cpan/Win32/
DWin32.xs1210 CloseHandle(stProcInfo.hThread);/* library source code does this. */