MCPcopy Create free account
hub / github.com/F-Stack/f-stack / async_reply_handle

Function async_reply_handle

dpdk/lib/eal/common/eal_common_proc.c:548–559  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

546}
547
548static void
549async_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
561static int
562open_socket_fd(void)

Callers

nothing calls this directly

Calls 4

pthread_mutex_lockFunction · 0.85
pthread_mutex_unlockFunction · 0.85
trigger_async_actionFunction · 0.85

Tested by

no test coverage detected