X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fcore%2Funit.h;h=bf961c2aacf2c8e6c503971cc0cb2041fa4cece3;hp=da715dc78e13198f28f8e3bac677e6a53d1eb74c;hb=3ef63c317481c2b3f1fe39e1b0f130aac3544522;hpb=41f9172f427bdbb8221c64029f78364b8dd4e527 diff --git a/src/core/unit.h b/src/core/unit.h index da715dc78..bf961c2aa 100644 --- a/src/core/unit.h +++ b/src/core/unit.h @@ -266,6 +266,10 @@ struct UnitVTable { /* How much memory does an object of this unit type need */ size_t object_size; + /* If greater than 0, the offset into the object where + * ExecContext is found, if the unit type has that */ + size_t exec_context_offset; + /* Config file sections this unit type understands, separated * by NUL chars */ const char *sections; @@ -538,6 +542,8 @@ int unit_add_mount_links(Unit *u); int unit_exec_context_defaults(Unit *u, ExecContext *c); +ExecContext *unit_get_exec_context(Unit *u); + const char *unit_active_state_to_string(UnitActiveState i); UnitActiveState unit_active_state_from_string(const char *s);