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

Function find_pending_request

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

Source from the content-addressed store, hash-verified

118trigger_async_action(struct pending_request *req);
119
120static struct pending_request *
121find_pending_request(const char *dst, const char *act_name)
122{
123 struct pending_request *r;
124
125 TAILQ_FOREACH(r, &pending_requests.requests, next) {
126 if (!strcmp(r->dst, dst) &&
127 !strcmp(r->request->name, act_name))
128 break;
129 }
130
131 return r;
132}
133
134static void
135create_socket_path(const char *name, char *buf, int len)

Callers 3

process_msgFunction · 0.85
mp_request_asyncFunction · 0.85
mp_request_syncFunction · 0.85

Calls 1

strcmpFunction · 0.85

Tested by

no test coverage detected