Changeset af92309 in mainline for uspace/srv/sysman/repo.h
- Timestamp:
- 2019-08-07T09:33:04Z (6 years ago)
- Children:
- 9532981
- Parents:
- 918ac9b
- git-author:
- Michal Koutný <xm.koutny+hos@…> (2015-11-02 22:12:18)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-07 09:33:04)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/sysman/repo.h
r918ac9b raf92309 27 27 */ 28 28 29 #ifndef SYSMAN_ CONFIGURATION_H30 #define SYSMAN_ CONFIGURATION_H29 #ifndef SYSMAN_REPO_H 30 #define SYSMAN_REPO_H 31 31 32 32 #include <adt/list.h> … … 37 37 extern list_t units; 38 38 39 extern void configuration_init(void);39 extern void repo_init(void); 40 40 41 extern int configuration_add_unit(unit_t *);41 extern int repo_add_unit(unit_t *); 42 42 43 extern void configuration_start_update(void);43 extern void repo_begin_update(void); 44 44 45 extern void configuration_commit(void);45 extern void repo_commit(void); 46 46 47 extern void configuration_rollback(void);47 extern void repo_rollback(void); 48 48 49 extern int configuration_resolve_dependecies(void);49 extern int repo_resolve_dependecies(void); 50 50 51 extern unit_t * configuration_find_unit_by_name(const char *);52 extern unit_t * configuration_find_unit_by_handle(unit_handle_t);51 extern unit_t *repo_find_unit_by_name(const char *); 52 extern unit_t *repo_find_unit_by_handle(unit_handle_t); 53 53 54 54
Note:
See TracChangeset
for help on using the changeset viewer.