aboutsummaryrefslogtreecommitdiff
path: root/common/uapi
diff options
context:
space:
mode:
Diffstat (limited to 'common/uapi')
-rw-r--r--common/uapi/conf.c7
-rw-r--r--common/uapi/dispatch.c5
-rw-r--r--common/uapi/ipc.c5
-rw-r--r--common/uapi/mem.c5
-rw-r--r--common/uapi/proc.c5
-rw-r--r--common/uapi/timers.c5
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>