| 56 | } |
| 57 | |
| 58 | time_t ThisProcess::ElapsedTime() |
| 59 | { |
| 60 | time_t start_time = ThisProcess::StartTime(); |
| 61 | if (start_time < 0) |
| 62 | return -1; |
| 63 | return time(NULL) - start_time; |
| 64 | } |
| 65 | |
| 66 | std::string ThisProcess::BinaryPath() |
| 67 | { |
nothing calls this directly
no outgoing calls
no test coverage detected