| 344 | } |
| 345 | |
| 346 | static uint64_t cli_activation_process_id(void) { |
| 347 | #ifdef _WIN32 |
| 348 | return (uint64_t)GetCurrentProcessId(); |
| 349 | #else |
| 350 | return (uint64_t)getpid(); |
| 351 | #endif |
| 352 | } |
| 353 | |
| 354 | static bool cli_activation_log_event(cli_activation_production_context_t *context, |
| 355 | const char *phase, const char *detail) { |
no outgoing calls
no test coverage detected