summaryrefslogtreecommitdiff
path: root/kern/kernel.h
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2014-01-02 23:38:10 +0100
committerRichard Braun <rbraun@sceen.net>2014-01-02 23:38:10 +0100
commitb50e90de4e56d22f5f40f09f02c7b9d7833a8452 (patch)
treefa581a22ab2c8251a3a93b85afca959b13bc1288 /kern/kernel.h
parent1a6349d0dddbd583d5185863335713374d5a48d8 (diff)
kern/kernel: update kernel entry declarations
Tell the compiler these functions don't return.
Diffstat (limited to 'kern/kernel.h')
-rw-r--r--kern/kernel.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/kern/kernel.h b/kern/kernel.h
index f5821ca..868066e 100644
--- a/kern/kernel.h
+++ b/kern/kernel.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2010, 2012 Richard Braun.
+ * Copyright (c) 2010, 2012, 2014 Richard Braun.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -18,6 +18,8 @@
#ifndef _KERN_KERNEL_H
#define _KERN_KERNEL_H
+#include <kern/macros.h>
+
/*
* Kernel properties.
*/
@@ -29,13 +31,13 @@
*
* Interrupts must be disabled when calling this function.
*/
-void kernel_main(void);
+void __noreturn kernel_main(void);
/*
* Entry point for APs.
*
* Interrupts must be disabled when calling this function.
*/
-void kernel_ap_main(void);
+void __noreturn kernel_ap_main(void);
#endif /* _KERN_KERNEL_H */