summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-09-17 02:50:20 +0000
committerDana Jansens <danakj@orodu.net>2003-09-17 02:50:20 +0000
commitf85a85541790a6095eb583ddb8684eece8dcc0c6 (patch)
treea0623f99955be30092477fde566235d0ef64b3bb
parent275c44c386e937ed66cd2021b880a3d7d4de4933 (diff)
make ob_exit() take an error code. don't exit with 0 for signals other than TERM and INT.
-rw-r--r--openbox/action.c2
-rw-r--r--openbox/event.c2
-rw-r--r--openbox/openbox.c13
-rw-r--r--openbox/openbox.h2
-rw-r--r--openbox/session.c2
5 files changed, 12 insertions, 9 deletions
diff --git a/openbox/action.c b/openbox/action.c
index adfa2d9e..d394b95b 100644
--- a/openbox/action.c
+++ b/openbox/action.c
@@ -1167,7 +1167,7 @@ void action_restart(union ActionData *data)
void action_exit(union ActionData *data)
{
- ob_exit();
+ ob_exit(0);
}
void action_showmenu(union ActionData *data)
diff --git a/openbox/event.c b/openbox/event.c
index e566f01f..d1c27fd7 100644
--- a/openbox/event.c
+++ b/openbox/event.c
@@ -554,7 +554,7 @@ static void event_handle_root(XEvent *e)
switch(e->type) {
case SelectionClear:
ob_debug("Another WM has requested to replace us. Exiting.\n");
- ob_exit();
+ ob_exit(0);
break;
case ClientMessage:
diff --git a/openbox/openbox.c b/openbox/openbox.c
index 73cc6e77..5b7e8e7e 100644
--- a/openbox/openbox.c
+++ b/openbox/openbox.c
@@ -61,6 +61,7 @@ static gboolean restart;
static char *restart_path;
static Cursor cursors[OB_NUM_CURSORS];
static KeyCode keys[OB_NUM_KEYS];
+static gint exitcode = 0;
static void signal_handler(int signal, gpointer data);
static void parse_args(int argc, char **argv);
@@ -297,7 +298,7 @@ int main(int argc, char **argv)
execlp(argv[0], g_path_get_basename(argv[0])); /* last resort */
}
- return 0;
+ return exitcode;
}
static void signal_handler(int signal, gpointer data)
@@ -310,7 +311,8 @@ static void signal_handler(int signal, gpointer data)
ob_reconfigure();
} else {
fprintf(stderr, "Caught signal %d. Exiting.\n", signal);
- ob_exit();
+ /* TERM and INT return a 0 code */
+ ob_exit(!(signal == SIGTERM || signal == SIGINT));
}
}
@@ -386,17 +388,18 @@ void ob_restart_other(const gchar *path)
void ob_restart()
{
restart = TRUE;
- ob_exit();
+ ob_exit(0);
}
void ob_reconfigure()
{
reconfigure = TRUE;
- ob_exit();
+ ob_exit(0);
}
-void ob_exit()
+void ob_exit(gint code)
{
+ exitcode = code;
ob_main_loop_exit(ob_main_loop);
}
diff --git a/openbox/openbox.h b/openbox/openbox.h
index a4e87a3a..4e7bd818 100644
--- a/openbox/openbox.h
+++ b/openbox/openbox.h
@@ -31,7 +31,7 @@ ObState ob_state();
void ob_restart_other(const gchar *path);
void ob_restart();
-void ob_exit();
+void ob_exit(gint code);
void ob_reconfigure();
diff --git a/openbox/session.c b/openbox/session.c
index 9ce04674..f646da08 100644
--- a/openbox/session.c
+++ b/openbox/session.c
@@ -281,7 +281,7 @@ static void sm_save_yourself(SmcConn conn, SmPointer data, int save_type,
static void sm_die(SmcConn conn, SmPointer data)
{
- ob_exit();
+ ob_exit(0);
}
static void sm_save_complete(SmcConn conn, SmPointer data)