Searched defs:PerThread (Results 1 – 3 of 3) sorted by relevance
217 struct PerThread { struct218 constexpr PerThread() : pool(nullptr), thread_id(-1) {} in PerThread() function219 RunHandlerThreadPool* pool; // Parent pool, or null for normal threads.220 int thread_id; // Worker thread index in pool.
217 struct PerThread { struct218 constexpr PerThread() : pool(NULL), rand(0), thread_id(-1) {} in PerThread() function219 ThreadPoolTempl* pool; // Parent pool, or null for normal threads.220 uint64_t rand; // Random generator state.221 int thread_id; // Worker thread index in pool.224 char pad_[128];
318 struct PerThread { struct319 constexpr PerThread() : pool(nullptr), thread_id(-1) {} in PerThread() argument343 PerThread* GetPerThread(); argument