MCPcopy Create free account
hub / github.com/axboe/liburing / write_pipe

Function write_pipe

test/multicqes_drain.c:54–62  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52static int multi_cap = max_entry / 5;
53
54static int write_pipe(int pipe, char *str)
55{
56 int ret;
57 do {
58 errno = 0;
59 ret = write(pipe, str, 3);
60 } while (ret == -1 && errno == EINTR);
61 return ret;
62}
63
64static void read_pipe(int pipe)
65{

Callers 1

trigger_eventFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected