| 155 | } |
| 156 | |
| 157 | static inline ink_thread |
| 158 | ink_thread_null() |
| 159 | { |
| 160 | // The implementation of ink_thread (the alias of pthread_t) is different on platforms |
| 161 | // - e.g. `struct pthread *` on Unix and `unsigned long int` on Linux |
| 162 | // NOLINTNEXTLINE(modernize-use-nullptr) |
| 163 | return static_cast<ink_thread>(0); |
| 164 | } |
| 165 | |
| 166 | static inline int |
| 167 | ink_thread_get_priority(ink_thread t, int *priority) |
no outgoing calls
no test coverage detected