diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-01-26 21:39:06 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-01-26 21:39:06 +0100 |
commit | 87f0e418cf2c58b3201d06a60e3696ec672d2662 (patch) | |
tree | a27ef34fdf69505d983852d36d200b6e590726df /timer.c | |
parent | fd79db6a5df0f94c48736ce5aa0131d6ab108fb0 (diff) |
s/name/unit
Diffstat (limited to 'timer.c')
-rw-r--r-- | timer.c | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -1,29 +1,29 @@ /*-*- Mode: C; c-basic-offset: 8 -*-*/ -#include "name.h" +#include "unit.h" #include "timer.h" -static void timer_done(Name *n) { - Timer *t = TIMER(n); +static void timer_done(Unit *u) { + Timer *t = TIMER(u); assert(t); } -static NameActiveState timer_active_state(Name *n) { +static UnitActiveState timer_active_state(Unit *u) { - static const NameActiveState table[_TIMER_STATE_MAX] = { - [TIMER_DEAD] = NAME_INACTIVE, - [TIMER_WAITING] = NAME_ACTIVE, - [TIMER_RUNNING] = NAME_ACTIVE + static const UnitActiveState table[_TIMER_STATE_MAX] = { + [TIMER_DEAD] = UNIT_INACTIVE, + [TIMER_WAITING] = UNIT_ACTIVE, + [TIMER_RUNNING] = UNIT_ACTIVE }; - return table[TIMER(n)->state]; + return table[TIMER(u)->state]; } -const NameVTable timer_vtable = { +const UnitVTable timer_vtable = { .suffix = ".timer", - .init = name_load_fragment_and_dropin, + .init = unit_load_fragment_and_dropin, .done = timer_done, .active_state = timer_active_state |