summaryrefslogtreecommitdiffstats
path: root/bus/activation-exit-codes.h
diff options
context:
space:
mode:
Diffstat (limited to 'bus/activation-exit-codes.h')
-rw-r--r--bus/activation-exit-codes.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/bus/activation-exit-codes.h b/bus/activation-exit-codes.h
new file mode 100644
index 00000000..0e858f14
--- /dev/null
+++ b/bus/activation-exit-codes.h
@@ -0,0 +1,38 @@
+/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
+/* activation-exit-codes.h Return values for the launch helper which is set
+ * in the helper and read in dbus-spawn.
+ *
+ * Copyright (C) 2007 Red Hat, Inc.
+ *
+ * Licensed under the Academic Free License version 2.1
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+ */
+
+#ifndef BUS_ACTIVATION_EXIT_CODES_H
+#define BUS_ACTIVATION_EXIT_CODES_H
+
+/** Return codes from the launch helper - not public API */
+#define BUS_SPAWN_EXIT_CODE_NO_MEMORY 1
+#define BUS_SPAWN_EXIT_CODE_CONFIG_INVALID 2
+#define BUS_SPAWN_EXIT_CODE_SETUP_FAILED 3
+#define BUS_SPAWN_EXIT_CODE_NAME_INVALID 4
+#define BUS_SPAWN_EXIT_CODE_SERVICE_NOT_FOUND 5
+#define BUS_SPAWN_EXIT_CODE_PERMISSIONS_INVALID 6
+#define BUS_SPAWN_EXIT_CODE_FILE_INVALID 7
+#define BUS_SPAWN_EXIT_CODE_EXEC_FAILED 8
+
+#endif /* BUS_ACTIVATION_EXIT_CODES_H */