Changeset af92309 in mainline for uspace/srv/sysman/repo.h


Ignore:
Timestamp:
2019-08-07T09:33:04Z (6 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
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)
Message:

sysman: Rename configuration to repo(sitory)

It's better suited for dynamic nature of the storage.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/srv/sysman/repo.h

    r918ac9b raf92309  
    2727 */
    2828
    29 #ifndef SYSMAN_CONFIGURATION_H
    30 #define SYSMAN_CONFIGURATION_H
     29#ifndef SYSMAN_REPO_H
     30#define SYSMAN_REPO_H
    3131
    3232#include <adt/list.h>
     
    3737extern list_t units;
    3838
    39 extern void configuration_init(void);
     39extern void repo_init(void);
    4040
    41 extern int configuration_add_unit(unit_t *);
     41extern int repo_add_unit(unit_t *);
    4242
    43 extern void configuration_start_update(void);
     43extern void repo_begin_update(void);
    4444
    45 extern void configuration_commit(void);
     45extern void repo_commit(void);
    4646
    47 extern void configuration_rollback(void);
     47extern void repo_rollback(void);
    4848
    49 extern int configuration_resolve_dependecies(void);
     49extern int repo_resolve_dependecies(void);
    5050
    51 extern unit_t *configuration_find_unit_by_name(const char *);
    52 extern unit_t *configuration_find_unit_by_handle(unit_handle_t);
     51extern unit_t *repo_find_unit_by_name(const char *);
     52extern unit_t *repo_find_unit_by_handle(unit_handle_t);
    5353
    5454
Note: See TracChangeset for help on using the changeset viewer.