Searched defs:ThreadState (Results 1 – 5 of 5) sorted by relevance
30 struct ThreadState { struct31 gpr_mu mu;32 size_t id; // For debugging purposes33 const char* name; // Thread state name34 gpr_cv cv;35 grpc_closure_list elems;36 size_t depth; // Number of closures in the closure list37 bool shutdown;38 bool queued_long_job;39 grpc_core::Thread thd;
35 class ThreadState; variable
121 class ThreadState { class123 ThreadState() : awaiting_threads_(false), threads_done_(false), count_(0) { in ThreadState() function in grpc_core::internal::ThreadState
166 enum ThreadState { FAKE, ALIVE, STARTED, DONE, FAILED, MOVED }; enum
1421 } ThreadState; typedef