| 546 | } |
| 547 | |
| 548 | static void |
| 549 | async_reply_handle(void *arg) |
| 550 | { |
| 551 | struct pending_request *req; |
| 552 | |
| 553 | pthread_mutex_lock(&pending_requests.lock); |
| 554 | req = async_reply_handle_thread_unsafe(arg); |
| 555 | pthread_mutex_unlock(&pending_requests.lock); |
| 556 | |
| 557 | if (req != NULL) |
| 558 | trigger_async_action(req); |
| 559 | } |
| 560 | |
| 561 | static int |
| 562 | open_socket_fd(void) |
nothing calls this directly
no test coverage detected