aboutsummaryrefslogtreecommitdiff
path: root/kern/machine.c
diff options
context:
space:
mode:
authorFlavio Cruz <flaviocruz@gmail.com>2022-12-25 20:41:46 -0500
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2022-12-27 00:00:50 +0100
commit84e0fb3f287864eca3a9322ef364b913f6a260bd (patch)
tree123333bce32a7d57c5112aa0d4c07b12821b6305 /kern/machine.c
parent63eefc08b5e762937118254ad0b82583cc38a2d2 (diff)
downloadgnumach-84e0fb3f287864eca3a9322ef364b913f6a260bd.tar.gz
gnumach-84e0fb3f287864eca3a9322ef364b913f6a260bd.tar.bz2
gnumach-84e0fb3f287864eca3a9322ef364b913f6a260bd.zip
Fix some warnings with -Wmissing-prototypes.
Marked some functions as static (private) as needed and added missing includes. This also revealed some dead code which was removed. Note that -Wmissing-prototypes is not enabled here since there is a bunch more warnings. Message-Id: <Y6j72lWRL9rsYy4j@mars>
Diffstat (limited to 'kern/machine.c')
-rw-r--r--kern/machine.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/kern/machine.c b/kern/machine.c
index 0e1781cc..6f481a5c 100644
--- a/kern/machine.c
+++ b/kern/machine.c
@@ -44,6 +44,7 @@
#include <kern/debug.h>
#include <kern/ipc_host.h>
#include <kern/host.h>
+#include <kern/machine.h>
#include <kern/lock.h>
#include <kern/processor.h>
#include <kern/queue.h>
@@ -103,7 +104,7 @@ void cpu_up(int cpu)
* Flag specified cpu as down. Called when a processor is about to
* go offline.
*/
-void cpu_down(int cpu)
+static void cpu_down(int cpu)
{
struct machine_slot *ms;
processor_t processor;