Home | History | Annotate | Download | only in common

Lines Matching defs:thread

90     lldb::thread_t thread = LLDB_INVALID_HOST_THREAD;
100 thread = ThreadCreate (thread_name,
105 return thread;
109 // Scoped class that will disable thread canceling when it is
118 // Disable the ability for this thread to be cancelled
127 // Restore the ability for this thread to be cancelled to what it
142 log->Printf ("%s (arg = %p) thread starting...", function, arg);
178 log->Printf ("%s (arg = %p) thread exiting because waitpid failed (%s)...", __FUNCTION__, arg, strerror(errno));
235 // If our process exited, then this thread should exit
239 log->Printf ("%s (arg = %p) thread exiting because pid received exit signal...", __FUNCTION__, arg);
247 log->Printf ("%s (arg = %p) thread exiting because callback returned true...", __FUNCTION__, arg);
257 log->Printf ("%s (arg = %p) thread exiting...", __FUNCTION__, arg);
452 // Calling "mach_port_deallocate()" bumps the reference count on the thread
575 log->Printf("thread created");
590 lldb::thread_t thread = LLDB_INVALID_HOST_THREAD;
595 int err = ::pthread_create (&thread, NULL, ThreadCreateTrampoline, info_ptr);
600 return thread;
610 Host::ThreadCancel (lldb::thread_t thread, Error *error)
612 int err = ::pthread_cancel (thread);
619 Host::ThreadDetach (lldb::thread_t thread, Error *error)
621 int err = ::pthread_detach (thread);
628 Host::ThreadJoin (lldb::thread_t thread, thread_result_t *thread_result_ptr, Error *error)
630 int err = ::pthread_join (thread, thread_result_ptr);
685 int (*pthread_setname_np_func)(pthread_t thread, const char *name);
704 // Thread names are coming in like '<lldb.comm.debugger.edit>' and
706 // off leads to a lot of similar named threads. Go through the thread name
1354 // Let the thread running Host::RunShellCommand() know that the process
1357 // Now wait for a handshake back from that thread running Host::RunShellCommand
1487 // Handshake with the monitor thread, or just let it know in advance that