source: mainline/uspace/srv/sysman/units/unit_cfg.c@ 59ba708

Last change on this file since 59ba708 was 6efec7e3, checked in by Matthieu Riolo <matthieu.riolo@…>, 6 years ago

Unit polymorphism (simple mount), debug logging

  • Property mode set to 100644
File size: 247 bytes
Line 
1#include <errno.h>
2
3#include "unit_cfg.h"
4
5static void unit_cfg_init(unit_t *unit)
6{
7 // TODO
8}
9
10static int unit_cfg_start(unit_t *unit)
11{
12 //TODO
13 return EOK;
14}
15
16static void unit_cfg_destroy(unit_t *unit)
17{
18 //TODO
19}
20
21
22DEFINE_UNIT_OPS(unit_cfg)
23
Note: See TracBrowser for help on using the repository browser.