diff options
author | Michael Stapelberg <stapelberg@users.noreply.github.com> | 2016-01-12 11:57:04 -0800 |
---|---|---|
committer | Michael Stapelberg <stapelberg@users.noreply.github.com> | 2016-01-12 11:57:04 -0800 |
commit | 8918502fcd23243ea01bfc23949b6c320049104c (patch) | |
tree | 06f797b140d2d0f71babc04a145d668e95bf8504 /src/pulse.c | |
parent | fad9c8237c63290aa9adde5ba6ffa6759f578645 (diff) | |
parent | dd75c260f86ed13c1937cd9369948cdbe8e25d12 (diff) |
Merge pull request #95 from Watcom/nanosleep
revert back to using nanosleep
Diffstat (limited to 'src/pulse.c')
-rw-r--r-- | src/pulse.c | 5 |
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); } } |