Force includes to use absolute paths.

This commit is contained in:
Enrico Fraccaroli
2021-10-05 14:29:24 +02:00
parent 0c6a38e189
commit 18a2fd9baa
95 changed files with 351 additions and 627 deletions
+3 -3
View File
@@ -6,9 +6,9 @@
#pragma once
#include "paging.h"
#include "signal.h"
#include "fpu.h"
#include "mem/paging.h"
#include "system/signal.h"
#include "devices/fpu.h"
/// The maximum length of a name for a task_struct.
#define TASK_NAME_MAX_LENGTH 100
+2 -2
View File
@@ -6,8 +6,8 @@
#pragma once
#include "list_head.h"
#include "process.h"
#include "klib/list_head.h"
#include "process/process.h"
#include "stddef.h"
/// @brief Structure that contains information about live processes.
+2 -2
View File
@@ -6,8 +6,8 @@
#pragma once
#include "list_head.h"
#include "spinlock.h"
#include "klib/list_head.h"
#include "klib/spinlock.h"
/// @brief Return immediately if no child is there to be waited for.
#define WNOHANG 0x00000001