summaryrefslogtreecommitdiffstats
path: root/include/api/init.h
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2025-09-26 13:17:41 -0400
committerJon Santmyer <jon@jonsantmyer.com>2025-09-26 13:17:41 -0400
commit2dadbfc899df4179ca70c4ea04f74a5e190c2ae7 (patch)
treeb166aaa9af42406cd07fbaf150f93aefeb2fbe33 /include/api/init.h
parentddc4fbc15223e362896a9f42beca73f05f48e664 (diff)
downloadjove-kernel-main.tar.gz
jove-kernel-main.tar.bz2
jove-kernel-main.zip
fix usermode interrupts. add ability to define custom interrupt handlersmain
Diffstat (limited to 'include/api/init.h')
-rw-r--r--include/api/init.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/api/init.h b/include/api/init.h
new file mode 100644
index 0000000..e17d8fd
--- /dev/null
+++ b/include/api/init.h
@@ -0,0 +1,15 @@
+#ifndef _JOVE_API_INIT_H
+#define _JOVE_API_INIT_H 1
+
+enum {
+ INIT_OBJECT_ROOTDIR = 0,
+ INIT_OBJECT_TCB,
+ INIT_OBJECT_PAGEMAP,
+ INIT_OBJECT_PROCESSOR_DIR,
+ INIT_OBJECT_UNTYPED_DIR,
+ INIT_OBJECT_INITRD_DIR,
+ INIT_OBJECT_MESSAGE,
+ INIT_OBJECT_LOG
+};
+
+#endif