| 56 | void InitMain(const char* usage, int* argc, char*** argv) {} |
| 57 | |
| 58 | string Hostname() { |
| 59 | char hostname[1024]; |
| 60 | gethostname(hostname, sizeof hostname); |
| 61 | hostname[sizeof hostname - 1] = 0; |
| 62 | return string(hostname); |
| 63 | } |
| 64 | |
| 65 | int NumSchedulableCPUs() { |
| 66 | #if defined(__linux__) && !defined(__ANDROID__) |
no outgoing calls
no test coverage detected