summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2018-06-17 09:58:23 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2018-06-17 09:58:23 +0200
commit9f66db0d1234425b8e0900826a06e0a6092f2c4a (patch)
tree6ff30074fa9975dffe5a1055a8ce2567abcc3730
parent12fadb1602dcf0ce4c4ec71ea60f36fe39013378 (diff)
Add missing prototype
* kern/machine.h (action_thread): Add prototype.
-rw-r--r--kern/machine.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/kern/machine.h b/kern/machine.h
index c67213a2..5c55d2cd 100644
--- a/kern/machine.h
+++ b/kern/machine.h
@@ -54,5 +54,6 @@ extern kern_return_t processor_shutdown (processor_t);
* action_thread() shuts down processors or changes their assignment.
*/
extern void action_thread_continue (void) __attribute__((noreturn));
+extern void action_thread(void) __attribute__((noreturn));
#endif /* _MACHINE_H_ */