Changeset 694253c in mainline for uspace/srv/sysman/unit.h
- Timestamp:
- 2019-08-03T07:35:41Z (6 years ago)
- Children:
- c0c388d2
- Parents:
- f42ee6f
- git-author:
- Michal Koutný <xm.koutny+hos@…> (2015-03-13 02:06:30)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-03 07:35:41)
- File:
-
- 1 edited
-
uspace/srv/sysman/unit.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/sysman/unit.h
rf42ee6f r694253c 3 3 4 4 #include <adt/list.h> 5 #include <fibril_synch.h> 5 6 6 7 #include "unit_mnt.h" … … 15 16 typedef enum { 16 17 STATE_EMBRYO = 0, 18 STATE_STARTED, 17 19 STATE_STOPPED 18 20 } unit_state_t; … … 22 24 23 25 unit_type_t type; 26 24 27 unit_state_t state; 28 fibril_mutex_t state_mtx; 29 fibril_condvar_t state_cv; 25 30 26 31 list_t dependencies; … … 37 42 extern void unit_destroy(unit_t **); 38 43 44 extern int unit_start(unit_t *); 39 45 40 46 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
