aboutsummaryrefslogtreecommitdiff
path: root/src/event_pipe.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-01 18:47:25 +0100
committerMax Kellermann <max@duempel.org>2009-01-01 18:47:25 +0100
commite93136ef0fac69b4bb7f02ba7e3b348827d597ea (patch)
treef7bffac522072ac0a32efd3cb4c1d499cbb725f0 /src/event_pipe.c
parentecb20c5f7e728693bcb67981fdde44832f1ed028 (diff)
event_pipe: added event_pipe_emit_fast()
event_pipe_emit_fast() is aimed for use in signal handlers: it doesn't lock the mutex, and doesn't log on error. That makes it potentially lossy, but for its intended use, that does not matter.
Diffstat (limited to 'src/event_pipe.c')
-rw-r--r--src/event_pipe.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/event_pipe.c b/src/event_pipe.c
index 44890341..318e59df 100644
--- a/src/event_pipe.c
+++ b/src/event_pipe.c
@@ -137,6 +137,14 @@ void event_pipe_emit(enum pipe_event event)
g_error("error writing to pipe: %s", strerror(errno));
}
+void event_pipe_emit_fast(enum pipe_event event)
+{
+ assert((unsigned)event < PIPE_EVENT_MAX);
+
+ pipe_events[event] = true;
+ write(event_pipe[1], "", 1);
+}
+
void event_pipe_signal(void)
{
event_pipe_emit(PIPE_EVENT_SIGNAL);