We do this because I won't want to figure out how to cleanly shut down the thread that is reading from stdin.
| 42 | // We do this because I won't want to figure out how to cleanly shut |
| 43 | // down the thread that is reading from stdin. |
| 44 | static void NukeProcess( int rc ) |
| 45 | { |
| 46 | #ifdef _WIN32 |
| 47 | ExitProcess( rc ); |
| 48 | #else |
| 49 | (void)rc; // Unused formal parameter |
| 50 | kill( getpid(), SIGKILL ); |
| 51 | #endif |
| 52 | } |
| 53 | |
| 54 | static void DebugOutput( ESteamNetworkingSocketsDebugOutputType eType, const char *pszMsg ) |
| 55 | { |
no outgoing calls
no test coverage detected