summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWatcom Hecht <watcom.hecht@gmail.com>2016-01-12 11:35:02 -0200
committerWatcom Hecht <watcom.hecht@gmail.com>2016-01-12 11:46:42 -0200
commitdd75c260f86ed13c1937cd9369948cdbe8e25d12 (patch)
tree06f797b140d2d0f71babc04a145d668e95bf8504 /src
parentfad9c8237c63290aa9adde5ba6ffa6759f578645 (diff)
revert back to using nanosleep
Fixes #93
Diffstat (limited to 'src')
-rw-r--r--src/pulse.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/pulse.c b/src/pulse.c
index 34e302b..f9ed5d3 100644
--- a/src/pulse.c
+++ b/src/pulse.c
@@ -2,6 +2,7 @@
#include <string.h>
#include <stdio.h>
#include <math.h>
+#include <signal.h>
#include <pulse/pulseaudio.h>
#include "i3status.h"
#include "queue.h"
@@ -89,9 +90,7 @@ static void store_volume_from_sink_cb(pa_context *c,
save_volume(DEFAULT_SINK_INDEX, composed_volume)) |
save_volume(info->index, composed_volume)) {
/* if the volume or mute flag changed, wake the main thread */
- pthread_mutex_lock(&i3status_sleep_mutex);
- pthread_cond_broadcast(&i3status_sleep_cond);
- pthread_mutex_unlock(&i3status_sleep_mutex);
+ pthread_kill(main_thread, SIGUSR1);
}
}