|
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_tgt.h"
|
|---|
| 4 |
|
|---|
| 5 | static void unit_tgt_init(unit_t *unit)
|
|---|
| 6 | {
|
|---|
| 7 | // TODO
|
|---|
| 8 | }
|
|---|
| 9 |
|
|---|
| 10 | static int unit_tgt_start(unit_t *unit)
|
|---|
| 11 | {
|
|---|
| 12 | //TODO
|
|---|
| 13 | return EOK;
|
|---|
| 14 | }
|
|---|
| 15 |
|
|---|
| 16 | static void unit_tgt_destroy(unit_t *unit)
|
|---|
| 17 | {
|
|---|
| 18 | //TODO
|
|---|
| 19 | }
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 | DEFINE_UNIT_OPS(unit_tgt)
|
|---|
| 23 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.