2007-07-24 11:34:40 +00:00
|
|
|
/* -*- 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
|
2007-07-24 22:11:00 +00:00
|
|
|
#define BUS_SPAWN_EXIT_CODE_INVALID_ARGS 9
|
2007-07-24 11:34:40 +00:00
|
|
|
|
|
|
|
|
#endif /* BUS_ACTIVATION_EXIT_CODES_H */
|