| 658 | } |
| 659 | |
| 660 | uint32_t Process::getTickCount() |
| 661 | { |
| 662 | #ifndef WIN32 |
| 663 | struct timeval tp; |
| 664 | gettimeofday(&tp, NULL); |
| 665 | return (tp.tv_sec * 1000) + (tp.tv_usec / 1000); |
| 666 | #else /* WIN32 */ |
| 667 | return GetTickCount(); |
| 668 | #endif /* WIN32 */ |
| 669 | } |
| 670 | |
| 671 | [[deprecated]] std::filesystem::path Process::getPath() |
| 672 | { |
no outgoing calls
no test coverage detected