| 376 | //////////////////////////////////////////////////////////////////////////////// |
| 377 | |
| 378 | srt::sync::CThread::CThread() |
| 379 | { |
| 380 | m_thread = pthread_t(); |
| 381 | m_pid = getpid(); |
| 382 | } |
| 383 | |
| 384 | srt::sync::CThread::CThread(void *(*start_routine) (void *), void *arg) |
| 385 | { |
nothing calls this directly
no outgoing calls
no test coverage detected