stub to add extra debugging/logging... */
| 37 | |
| 38 | /* stub to add extra debugging/logging... */ |
| 39 | static void debugprint(const char* format, ...) |
| 40 | { |
| 41 | #if 0 |
| 42 | va_list args; |
| 43 | va_start(args, format); |
| 44 | vfprintf(stderr, format, args); |
| 45 | va_end(args); |
| 46 | #endif |
| 47 | } |
| 48 | |
| 49 | static unsigned long tid_self() { |
| 50 | return reinterpret_cast<unsigned long>(pthread_self()); |
no outgoing calls
no test coverage detected