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

Function fdset_pipe_notify

dpdk/lib/vhost/fd_man.c:363–373  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

361}
362
363void
364fdset_pipe_notify(struct fdset *fdset)
365{
366 int r = write(fdset->u.writefd, "1", 1);
367 /*
368 * Just an optimization, we don't care if write() failed
369 * so ignore explicitly its return value to make the
370 * compiler happy
371 */
372 RTE_SET_USED(r);
373}
374
375void
376fdset_pipe_notify_sync(struct fdset *fdset)

Callers 5

fdset_pipe_notify_syncFunction · 0.85
vduse_vring_setupFunction · 0.85
vduse_vring_cleanupFunction · 0.85
vduse_device_createFunction · 0.85

Calls 1

writeFunction · 0.50

Tested by

no test coverage detected