| 4534 | } |
| 4535 | |
| 4536 | static win_generation_address_t *win_endpoint_generation_snapshot( |
| 4537 | const cbm_daemon_ipc_endpoint_t *endpoint) { |
| 4538 | return endpoint ? atomic_load_explicit(&endpoint->current_generation, memory_order_acquire) |
| 4539 | : NULL; |
| 4540 | } |
| 4541 | |
| 4542 | static void win_endpoint_generation_invalidate(const cbm_daemon_ipc_endpoint_t *endpoint) { |
| 4543 | if (endpoint) { |
no outgoing calls
no test coverage detected