X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Funit.h;h=c9fd4a538cb2fe7e11c96b7a3097880124cfa4e2;hp=d3dd5decd25348dea9c8fd094517557be8378ea0;hb=2e22afe909cd5fa003347aa91ad15f0516e5047f;hpb=2c966c038dc32ef39baa176371395cde4e541d01 diff --git a/src/unit.h b/src/unit.h index d3dd5decd..c9fd4a538 100644 --- a/src/unit.h +++ b/src/unit.h @@ -43,15 +43,6 @@ typedef enum UnitDependency UnitDependency; #define DEFAULT_TIMEOUT_USEC (60*USEC_PER_SEC) #define DEFAULT_RESTART_USEC (100*USEC_PER_MSEC) -typedef enum KillMode { - KILL_CONTROL_GROUP = 0, - KILL_PROCESS_GROUP, - KILL_PROCESS, - KILL_NONE, - _KILL_MODE_MAX, - _KILL_MODE_INVALID = -1 -} KillMode; - enum UnitType { UNIT_SERVICE = 0, UNIT_SOCKET, @@ -142,9 +133,6 @@ struct Meta { UnitLoadState load_state; Unit *merged_into; - /* Refuse manual starting, allow starting only indirectly via dependency. */ - bool only_by_dependency; - char *id; /* One name is special because we use it for identification. Points to an entry in the names set */ char *instance; @@ -190,6 +178,12 @@ struct Meta { /* Garbage collect us we nobody wants or requires us anymore */ bool stop_when_unneeded; + /* Refuse manual starting, allow starting only indirectly via dependency. */ + bool only_by_dependency; + + /* Create default depedencies */ + bool default_dependencies; + /* When deserializing, temporarily store the job type for this * unit here, if there was a job scheduled */ int deserialized_job; /* This is actually of type JobType */ @@ -332,6 +326,9 @@ struct UnitVTable { /* Exclude from isolation requests */ bool no_isolate:1; + + /* Show status updates on the console */ + bool show_status:1; }; extern const UnitVTable * const unit_vtable[_UNIT_TYPE_MAX]; @@ -456,6 +453,8 @@ int unit_add_node_link(Unit *u, const char *what, bool wants); int unit_coldplug(Unit *u); +void unit_status_printf(Unit *u, const char *format, ...); + const char *unit_type_to_string(UnitType i); UnitType unit_type_from_string(const char *s);