summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kern/machine.c7
-rw-r--r--kern/processor.h7
2 files changed, 7 insertions, 7 deletions
diff --git a/kern/machine.c b/kern/machine.c
index f69e728..3dadeb5 100644
--- a/kern/machine.c
+++ b/kern/machine.c
@@ -361,8 +361,6 @@ processor_t processor;
/*
* action_thread() shuts down processors or changes their assignment.
*/
-void processor_doaction(); /* forward */
-
void action_thread_continue()
{
processor_t processor;
@@ -403,11 +401,6 @@ void action_thread()
* is to schedule ourselves onto a cpu and then save our
* context back into the runqs before taking out the cpu.
*/
-#ifdef __GNUC__
-__volatile__
-#endif
-void processor_doshutdown(); /* forward */
-
void processor_doaction(processor)
processor_t processor;
{
diff --git a/kern/processor.h b/kern/processor.h
index 9a6c944..ea69c23 100644
--- a/kern/processor.h
+++ b/kern/processor.h
@@ -320,4 +320,11 @@ extern kern_return_t processor_set_threads(
natural_t *count);
#endif
+void processor_doaction(processor_t processor);
+
+#ifdef __GNUC__
+__volatile__
+#endif
+void processor_doshutdown(processor_t processor);
+
#endif /* _KERN_PROCESSOR_H_ */