mailing list of musl libc
 help / color / mirror / code / Atom feed
From: Serge Ziryukin <ftrvxmtrx@gmail.com>
To: musl@lists.openwall.com
Cc: Serge Ziryukin <ftrvxmtrx@gmail.com>
Subject: [PATCH] add eventfd syscall wrapper and helper abstractions as in glibc
Date: Wed,  4 May 2011 22:59:45 +0300	[thread overview]
Message-ID: <1304539185-25729-1-git-send-email-ftrvxmtrx@gmail.com> (raw)

abstractions are:

typedef uint64_t eventfd_t;
int eventfd_read(int fd, eventfd_t *value);
int eventfd_write(int fd, eventfd_t value);

these are trying to hide the details of reading and writing
on an eventfd descriptor.

Signed-off-by: Serge Ziryukin <ftrvxmtrx@gmail.com>
---
 include/sys/eventfd.h     |   25 +++++++++++++++++++++++++
 src/linux/eventfd.c       |    7 +++++++
 src/linux/eventfd_read.c  |    7 +++++++
 src/linux/eventfd_write.c |    7 +++++++
 4 files changed, 46 insertions(+), 0 deletions(-)
 create mode 100644 include/sys/eventfd.h
 create mode 100644 src/linux/eventfd.c
 create mode 100644 src/linux/eventfd_read.c
 create mode 100644 src/linux/eventfd_write.c

diff --git a/include/sys/eventfd.h b/include/sys/eventfd.h
new file mode 100644
index 0000000..13bc9c4
--- /dev/null
+++ b/include/sys/eventfd.h
@@ -0,0 +1,25 @@
+#ifndef _SYS_EVENTFD_H
+#define _SYS_EVENTFD_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include <stdint.h>
+
+typedef uint64_t eventfd_t;
+
+#define EFD_SEMAPHORE 1
+#define EFD_CLOEXEC 02000000
+#define EFD_NONBLOCK 04000
+
+int eventfd(unsigned int, int);
+int eventfd_read(int, eventfd_t *);
+int eventfd_write(int, eventfd_t);
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* sys/eventfd.h */
diff --git a/src/linux/eventfd.c b/src/linux/eventfd.c
new file mode 100644
index 0000000..2ddfc68
--- /dev/null
+++ b/src/linux/eventfd.c
@@ -0,0 +1,7 @@
+#include <sys/eventfd.h>
+#include "syscall.h"
+
+int eventfd(unsigned int count, int flags)
+{
+	return syscall(SYS_eventfd, count, flags);
+}
diff --git a/src/linux/eventfd_read.c b/src/linux/eventfd_read.c
new file mode 100644
index 0000000..969e661
--- /dev/null
+++ b/src/linux/eventfd_read.c
@@ -0,0 +1,7 @@
+#include <sys/eventfd.h>
+#include <unistd.h>
+
+int eventfd_read(int fd, eventfd_t *value)
+{
+	return (sizeof(*value) == read(fd, value, sizeof(*value))) ? 0 : -1;
+}
diff --git a/src/linux/eventfd_write.c b/src/linux/eventfd_write.c
new file mode 100644
index 0000000..734fa36
--- /dev/null
+++ b/src/linux/eventfd_write.c
@@ -0,0 +1,7 @@
+#include <sys/eventfd.h>
+#include <unistd.h>
+
+int eventfd_write(int fd, eventfd_t value)
+{
+	return (sizeof(value) == write(fd, &value, sizeof(value))) ? 0 : -1;
+}
-- 
1.7.5



             reply	other threads:[~2011-05-04 19:59 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-05-04 19:59 Serge Ziryukin [this message]
2011-05-05  4:15 ` [PATCH] add eventfd syscall wrapper and helper Rich Felker
2011-05-05  5:27   ` Serge Ziryukin
2011-05-05  5:30     ` [PATCH] add eventfd syscall wrapper and helper abstractions as in glibc Serge Ziryukin
2011-05-08  4:26       ` Rich Felker

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1304539185-25729-1-git-send-email-ftrvxmtrx@gmail.com \
    --to=ftrvxmtrx@gmail.com \
    --cc=musl@lists.openwall.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).