1480e5da6f
* This will be heavily inspired by Apple's launchd, as well as systemd -- for now it really doesn't do a whole lot, though. * What works so far: the configuration files are read, parsed, and the jobs created. * The jobs are even initialized, and their message ports created. * BApplication now retrieves a previously created port from the launch_daemon for use with BServer. * Only the registrar actually uses this for now.
36 lines
580 B
C++
36 lines
580 B
C++
/*
|
|
* Copyright 2015, Haiku, Inc. All Rights Reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*
|
|
* Authors:
|
|
* Axel Dörfler, axeld@pinc-software.de
|
|
*/
|
|
#ifndef LAUNCH_DAEMON_DEFS_H
|
|
#define LAUNCH_DAEMON_DEFS_H
|
|
|
|
|
|
//! launch_daemon interface
|
|
|
|
|
|
#include <Errors.h>
|
|
#include <Roster.h>
|
|
|
|
|
|
namespace BPrivate {
|
|
|
|
#define kLaunchDaemonSignature "application/x-vnd.Haiku-launch_daemon"
|
|
#define B_LAUNCH_DAEMON_PORT_NAME "system:launch_daemon"
|
|
|
|
|
|
// message constants
|
|
enum {
|
|
B_GET_LAUNCH_CONNECTIONS = 'lncc',
|
|
};
|
|
|
|
|
|
} // namespace BPrivate
|
|
|
|
|
|
#endif // LAUNCH_DAEMON_DEFS_H
|
|
|