From a40ba17874eb44c206218223df338a3d9f8704f9 Mon Sep 17 00:00:00 2001 From: Marin Ramesa Date: Sat, 23 Nov 2013 15:29:30 +0100 Subject: kern: move forward declarations into a header file * kern/machine.c (processor_doaction, processor_doshutdown): Remove forward declarations. * kern/processor.h (processor_doaction, processor_doshutdown): Add prototypes. --- kern/processor.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'kern/processor.h') diff --git a/kern/processor.h b/kern/processor.h index 9a6c944b..ea69c234 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_ */ -- cgit v1.2.3