Fix mutex lock in read_event
authorAndrew Bays <andrew.bays@gmail.com>
Fri, 23 Mar 2018 11:08:55 +0000 (07:08 -0400)
committerAndrew Bays <andrew.bays@gmail.com>
Wed, 4 Sep 2019 19:50:44 +0000 (15:50 -0400)
src/procevent.c

index 7fab655..368e7c4 100644 (file)
@@ -803,7 +803,7 @@ static int read_event() {
   // in the ring buffer for consumption by the main polling thread.
 
   if (proc_status != -1) {
-    pthread_mutex_unlock(&procevent_lock);
+    pthread_mutex_lock(&procevent_lock);
 
     int next = ring.head + 1;
     if (next >= ring.maxLen)