We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fd8fce commit 76e2668Copy full SHA for 76e2668
network-unix.c
@@ -38,7 +38,7 @@ int set_blocking_mode(int fd, bool blocking)
38
#if WITH_NETWORK_EVENTFD
39
#include <sys/eventfd.h>
40
41
-int create_cancel_fd(struct iiod_client_pdata *io_ctx)
+static int create_cancel_fd(struct iiod_client_pdata *io_ctx)
42
{
43
io_ctx->cancel_fd[0] = eventfd(0, EFD_CLOEXEC | EFD_NONBLOCK);
44
if (io_ctx->cancel_fd[0] < 0)
@@ -48,7 +48,7 @@ int create_cancel_fd(struct iiod_client_pdata *io_ctx)
48
49
#else /* WITH_NETWORK_EVENTFD */
50
51
52
53
int ret;
54
0 commit comments