/*
* This file is part of the Corax operating system.
- * Copyright (C) 2016 Matthias Kruk
+ * Copyright (C) 2016-2020 Matthias Kruk
*
* Corax is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
#include <crxstd.h>
#include <unistd.h>
#include <sched.h>
+#include <sys/types.h>
+#include <sys/wait.h>
void cpu_debug(void);
int arch_init(void*);
{
pid_t pid;
int err;
- int i;
/*
* instead of something like /sbin/init, this process will behave more like the process daemon
}
}
*/
-
err = process_create(&proc, PID_ANY, 0, (void*)_idle);
if(err < 0) {