diff options
author | carlosg <carlosg> | 2006-10-24 14:06:05 +0000 |
---|---|---|
committer | carlosg <carlosg> | 2006-10-24 14:06:05 +0000 |
commit | fbf70b1828d8c89c2a6488b7350460c7d0ab1742 (patch) | |
tree | 426522f2360a63edc85fe199ed3071cc7c61a0f3 | |
parent | 7c108e15bfc8865556f1ea64a02cfd8c0f9a5850 (diff) |
2006-10-24 Carlos Garnacho <carlosg@gnome.org>c-dispatcher
* dispatcher/dispatcher.c: exit() on SIGTERM.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | dispatcher/dispatcher.c | 2 |
2 files changed, 6 insertions, 0 deletions
@@ -1,5 +1,9 @@ 2006-10-24 Carlos Garnacho <carlosg@gnome.org> + * dispatcher/dispatcher.c: exit() on SIGTERM. + +2006-10-24 Carlos Garnacho <carlosg@gnome.org> + Continued work on the dispatcher, I think it's now feature complete enough to work. diff --git a/dispatcher/dispatcher.c b/dispatcher/dispatcher.c index 8655209..136f8c9 100644 --- a/dispatcher/dispatcher.c +++ b/dispatcher/dispatcher.c @@ -265,6 +265,8 @@ on_sigterm (gint signal) g_source_remove (watch_id); kill (bus_pid, SIGTERM); } + + exit (0); } int |