| 770 | } |
| 771 | |
| 772 | static uint64_t GetPid() |
| 773 | { |
| 774 | #if defined _WIN32 |
| 775 | return uint64_t( GetCurrentProcessId() ); |
| 776 | #else |
| 777 | return uint64_t( getpid() ); |
| 778 | #endif |
| 779 | } |
| 780 | |
| 781 | void Profiler::AckServerQuery() |
| 782 | { |
no outgoing calls
no test coverage detected