[pulseaudio-commits] r1908 - /branches/lennart/src/pulsecore/fdsem.c

svnmailer-noreply at 0pointer.de svnmailer-noreply at 0pointer.de
Wed Sep 26 15:50:09 PDT 2007


Author: lennart
Date: Thu Sep 27 00:50:08 2007
New Revision: 1908

URL: http://0pointer.de/cgi-bin/viewcvs.cgi?rev=1908&root=pulseaudio&view=rev
Log:
Use Linux eventfd() if kernel supports it

Modified:
    branches/lennart/src/pulsecore/fdsem.c

Modified: branches/lennart/src/pulsecore/fdsem.c
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/branches/lennart/src/pulsecore/fdsem.c?rev=1908&root=pulseaudio&r1=1907&r2=1908&view=diff
==============================================================================
--- branches/lennart/src/pulsecore/fdsem.c (original)
+++ branches/lennart/src/pulsecore/fdsem.c Thu Sep 27 00:50:08 2007
@@ -25,6 +25,7 @@
 #include <config.h>
 #endif
 
+#include <sys/syscall.h>
 #include <unistd.h>
 #include <errno.h>
 
@@ -35,10 +36,37 @@
 #include <pulsecore/core-util.h>
 #include <pulse/xmalloc.h>
 
+#ifdef __linux__
+
+#if !defined(__NR_eventfd) && defined(__i386__)
+#define __NR_eventfd 323
+#endif
+
+#if !defined(__NR_eventfd) && defined(__x86_64__)
+#define __NR_eventfd 284
+#endif
+
+#if !defined(SYS_eventfd) && defined(__NR_eventfd)
+#define SYS_eventfd __NR_eventfd
+#endif
+
+#ifdef SYS_eventfd
+#define HAVE_EVENTFD
+
+static inline long eventfd(unsigned count) {
+    return syscall(SYS_eventfd, count);
+}
+
+#endif
+#endif
+
 #include "fdsem.h"
 
 struct pa_fdsem {
     int fds[2];
+#ifdef HAVE_EVENTFD
+    int efd;
+#endif
     pa_atomic_t waiting;
     pa_atomic_t signalled;
     pa_atomic_t in_pipe;
@@ -48,25 +76,38 @@
     pa_fdsem *f;
 
     f = pa_xnew(pa_fdsem, 1);
-    
-    if (pipe(f->fds) < 0) {
-        pa_xfree(f);
-        return NULL;
-    }
-
-    pa_make_fd_cloexec(f->fds[0]);
-    pa_make_fd_cloexec(f->fds[1]);
+
+#ifdef HAVE_EVENTFD
+    if ((f->efd = eventfd(0)) >= 0) {
+        pa_make_fd_cloexec(f->efd);
+        f->fds[0] = f->fds[1] = -1;
+
+    } else
+#endif
+    {
+        if (pipe(f->fds) < 0) {
+            pa_xfree(f);
+            return NULL;
+        }
+
+        pa_make_fd_cloexec(f->fds[0]);
+        pa_make_fd_cloexec(f->fds[1]);
+    }
 
     pa_atomic_store(&f->waiting, 0);
     pa_atomic_store(&f->signalled, 0);
     pa_atomic_store(&f->in_pipe, 0);
-    
+
     return f;
 }
 
 void pa_fdsem_free(pa_fdsem *f) {
     pa_assert(f);
 
+#ifdef HAVE_EVENTFD
+    if (f->efd >= 0)
+        pa_close(f->efd);
+#endif
     pa_close_pipe(f->fds);
 
     pa_xfree(f);
@@ -81,12 +122,24 @@
 
     do {
         char x[10];
-        
+
+#ifdef HAVE_EVENTFD
+        if (f->efd >= 0) {
+            uint64_t u;
+
+            if ((r = read(f->efd, &u, sizeof(u))) != sizeof(u)) {
+                pa_assert(r < 0 && errno == EINTR);
+                continue;
+            }
+            r = (ssize_t) u;
+        } else
+#endif
+
         if ((r = read(f->fds[0], &x, sizeof(x))) <= 0) {
             pa_assert(r < 0 && errno == EINTR);
             continue;
         }
-        
+
     } while (pa_atomic_sub(&f->in_pipe, r) > r);
 }
 
@@ -98,11 +151,22 @@
         if (pa_atomic_load(&f->waiting)) {
             ssize_t r;
             char x = 'x';
-            
+
             pa_atomic_inc(&f->in_pipe);
 
             for (;;) {
-                
+
+#ifdef HAVE_EVENTFD
+                if (f->efd >= 0) {
+                    uint64_t u = 1;
+
+                    if ((r = write(f->efd, &u, sizeof(u))) != sizeof(u)) {
+                        pa_assert(r < 0 && errno == EINTR);
+                        continue;
+                    }
+                } else
+#endif
+
                 if ((r = write(f->fds[1], &x, 1)) != 1) {
                     pa_assert(r < 0 && errno == EINTR);
                     continue;
@@ -123,16 +187,29 @@
         return;
 
     pa_atomic_inc(&f->waiting);
-        
+
     while (!pa_atomic_cmpxchg(&f->signalled, 1, 0)) {
         char x[10];
         ssize_t r;
-        
+
+#ifdef HAVE_EVENTFD
+        if (f->efd >= 0) {
+            uint64_t u;
+
+            if ((r = read(f->efd, &u, sizeof(u))) != sizeof(u)) {
+                pa_assert(r < 0 && errno == EINTR);
+                continue;
+            }
+
+            r = (ssize_t) u;
+        } else
+#endif
+
         if ((r = read(f->fds[0], &x, sizeof(x))) <= 0) {
             pa_assert(r < 0 && errno == EINTR);
             continue;
         }
-            
+
         pa_atomic_sub(&f->in_pipe, r);
     }
 
@@ -143,17 +220,21 @@
     pa_assert(f);
 
     flush(f);
-    
+
     if (pa_atomic_cmpxchg(&f->signalled, 1, 0))
         return 1;
 
     return 0;
 }
 
-
 int pa_fdsem_get(pa_fdsem *f) {
     pa_assert(f);
-    
+
+#ifdef HAVE_EVENTFD
+    if (f->efd >= 0)
+        return f->efd;
+#endif
+
     return f->fds[0];
 }
 
@@ -170,7 +251,7 @@
     if (pa_atomic_cmpxchg(&f->signalled, 1, 0)) {
         pa_assert_se(pa_atomic_dec(&f->waiting) >= 1);
         return -1;
-    }        
+    }
     return 0;
 }
 




More information about the pulseaudio-commits mailing list