| 293 | } |
| 294 | |
| 295 | static uint64_t cli_activation_process_id(void) { |
| 296 | #ifdef _WIN32 |
| 297 | return (uint64_t)GetCurrentProcessId(); |
| 298 | #else |
| 299 | return (uint64_t)getpid(); |
| 300 | #endif |
| 301 | } |
| 302 | |
| 303 | static bool cli_activation_log_event(cli_activation_production_context_t *context, |
| 304 | const char *phase, const char *detail) { |
no outgoing calls
no test coverage detected