| 133 | |
| 134 | private: |
| 135 | Thread(const std::string& category, const std::string& name) |
| 136 | : category_(category), name_(name), tid_(UNINITIALISED_THREAD_ID) {} |
| 137 | |
| 138 | /// To distinguish between a thread ID that can't be determined, and one that hasn't |
| 139 | /// been assigned. Since tid_ is set in the constructor, this value will never be seen |
no outgoing calls