| 4 | |
| 5 | namespace stratus { |
| 6 | static Thread ** GetCurrentThreadPtr() { |
| 7 | static thread_local Thread * _current = nullptr; |
| 8 | return &_current; |
| 9 | } |
| 10 | |
| 11 | static void NullifyCurrentThread() { |
| 12 | Thread ** current = GetCurrentThreadPtr(); |
no outgoing calls
no test coverage detected