Home
last modified time | relevance | path

Searched refs:running_thread (Results 1 – 2 of 2) sorted by relevance

/llvm-project/lldb/test/API/macosx/thread_suspend/
H A Dmain.c50 pthread_t running_thread; in main() local
51 pthread_create(&running_thread, NULL, running_func, NULL); in main()
53 pthread_join(running_thread, NULL); in main()
/llvm-project/lldb/source/Plugins/Process/Linux/
H A DNativeProcessLinux.cpp1130 NativeThreadProtocol *running_thread = nullptr; in Interrupt()
1139 running_thread = thread.get(); in Interrupt()
1148 if (!running_thread && !stopped_thread) { in Interrupt()
1157 running_thread ? running_thread : stopped_thread; in Interrupt()
1160 running_thread ? "running" : "stopped", in Interrupt()
1126 NativeThreadProtocol *running_thread = nullptr; Interrupt() local