diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-05-22 23:35:02 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2022-05-22 23:35:02 +0300 |
| commit | 72df0de8cb579fd96449d19eb57fc71335907a19 (patch) | |
| tree | 6a0a24478fe95f009619787afd24ddfe5df8cfd7 /common/uapi | |
| parent | d99be9e2912e0726ab779053b43a89e3b9e21490 (diff) | |
| download | kmi-72df0de8cb579fd96449d19eb57fc71335907a19.tar.gz kmi-72df0de8cb579fd96449d19eb57fc71335907a19.zip | |
add @file info to all files
+ Next step, start documenting contents of each file.
Diffstat (limited to 'common/uapi')
| -rw-r--r-- | common/uapi/conf.c | 7 | ||||
| -rw-r--r-- | common/uapi/dispatch.c | 5 | ||||
| -rw-r--r-- | common/uapi/ipc.c | 5 | ||||
| -rw-r--r-- | common/uapi/mem.c | 5 | ||||
| -rw-r--r-- | common/uapi/proc.c | 5 | ||||
| -rw-r--r-- | common/uapi/timers.c | 5 |
6 files changed, 32 insertions, 0 deletions
diff --git a/common/uapi/conf.c b/common/uapi/conf.c index 25677ef..a30333b 100644 --- a/common/uapi/conf.c +++ b/common/uapi/conf.c @@ -1,3 +1,10 @@ +/** + * @file conf.c + * Runtime configuration sycall implementations. + * + * At the moment there are not runtime configuration parameters. + */ + #include <apos/power.h> #include <apos/sizes.h> #include <apos/uapi.h> diff --git a/common/uapi/dispatch.c b/common/uapi/dispatch.c index 5e2e788..1e72e77 100644 --- a/common/uapi/dispatch.c +++ b/common/uapi/dispatch.c @@ -1,3 +1,8 @@ +/** + * @file dispatch.c + * Syscall dispatch. + */ + #include <apos/uapi.h> static const sys_t syscall_table[] = { diff --git a/common/uapi/ipc.c b/common/uapi/ipc.c index 0d2d287..d3cbcd7 100644 --- a/common/uapi/ipc.c +++ b/common/uapi/ipc.c @@ -1,3 +1,8 @@ +/** + * @file ipc.c + * Interprocess communication syscall implementations. + */ + #include <apos/uapi.h> #include <apos/tcb.h> diff --git a/common/uapi/mem.c b/common/uapi/mem.c index 7526152..83d7289 100644 --- a/common/uapi/mem.c +++ b/common/uapi/mem.c @@ -1,3 +1,8 @@ +/** + * @file mem.c + * Memory handling syscall implementations. + */ + #include <apos/uapi.h> #include <apos/utils.h> #include <apos/vmem.h> diff --git a/common/uapi/proc.c b/common/uapi/proc.c index 3ce3bcb..43e825d 100644 --- a/common/uapi/proc.c +++ b/common/uapi/proc.c @@ -1,3 +1,8 @@ +/** + * @file proc.c + * Process/thread handling syscall implementations. + */ + #include <apos/uapi.h> SYSCALL_DEFINE0(create)() diff --git a/common/uapi/timers.c b/common/uapi/timers.c index 97a1d30..ca2443b 100644 --- a/common/uapi/timers.c +++ b/common/uapi/timers.c @@ -1,3 +1,8 @@ +/** + * @file timers.c + * Timer syscall implementations. + */ + #include <apos/timer.h> #include <apos/uapi.h> |
