mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-05 22:48:02 +02:00
Use SIGHUP without check in UNIX environment
As Simon's comment https://bugs.freedesktop.org/show_bug.cgi?id=66068#c8 we can do this in UNIX environment. Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
This commit is contained in:
parent
5852f76cb9
commit
aa4b9d39bd
1 changed files with 0 additions and 4 deletions
|
|
@ -61,7 +61,6 @@ signal_handler (int sig)
|
|||
{
|
||||
switch (sig)
|
||||
{
|
||||
#ifdef SIGHUP
|
||||
case SIGHUP:
|
||||
{
|
||||
DBusString str;
|
||||
|
|
@ -94,7 +93,6 @@ signal_handler (int sig)
|
|||
}
|
||||
}
|
||||
break;
|
||||
#endif
|
||||
|
||||
case SIGTERM:
|
||||
{
|
||||
|
|
@ -642,9 +640,7 @@ main (int argc, char **argv)
|
|||
* no point in trying to make the handler portable to non-Unix. */
|
||||
|
||||
_dbus_set_signal_handler (SIGTERM, signal_handler);
|
||||
#ifdef SIGHUP
|
||||
_dbus_set_signal_handler (SIGHUP, signal_handler);
|
||||
#endif
|
||||
#endif /* DBUS_UNIX */
|
||||
|
||||
_dbus_verbose ("We are on D-Bus...\n");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue