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
+11 -11
View File
@@ -5,26 +5,26 @@
/// See LICENSE.md for details.
#include "kernel_levels.h"
#include "sys/kernel_levels.h"
//#ifndef __DEBUG_LEVEL__
//#define __DEBUG_LEVEL__ LOGLEVEL_DEBUG
//#endif
#include <errno.h>
#include "process.h"
#include "scheduler.h"
#include "process/process.h"
#include "process/scheduler.h"
#include "assert.h"
#include "libgen.h"
#include "string.h"
#include "timer.h"
#include "hardware/timer.h"
#include "sys/errno.h"
#include "fcntl.h"
#include "panic.h"
#include "debug.h"
#include "wait.h"
#include "prio.h"
#include "vfs.h"
#include "elf.h"
#include "system/panic.h"
#include "misc/debug.h"
#include "process/wait.h"
#include "process/prio.h"
#include "fs/vfs.h"
#include "elf/elf.h"
/// Cache for creating the task structs.
static kmem_cache_t *task_struct_cache;
+13 -13
View File
@@ -9,20 +9,20 @@
#include "assert.h"
#include "strerror.h"
#include "vfs.h"
#include "scheduler.h"
#include "tss.h"
#include "fpu.h"
#include "prio.h"
#include "wait.h"
#include "kheap.h"
#include "panic.h"
#include "debug.h"
#include "fs/vfs.h"
#include "process/scheduler.h"
#include "descriptor_tables/tss.h"
#include "devices/fpu.h"
#include "process/prio.h"
#include "process/wait.h"
#include "mem/kheap.h"
#include "system/panic.h"
#include "misc/debug.h"
#include "time.h"
#include "errno.h"
#include "list_head.h"
#include "paging.h"
#include "timer.h"
#include "sys/errno.h"
#include "klib/list_head.h"
#include "mem/paging.h"
#include "hardware/timer.h"
#include "math.h"
#include "stdio.h"
+6 -6
View File
@@ -4,13 +4,13 @@
/// @copyright (c) 2014-2021 This file is distributed under the MIT License.
/// See LICENSE.md for details.
#include "timer.h"
#include "prio.h"
#include "debug.h"
#include "hardware/timer.h"
#include "process/prio.h"
#include "misc/debug.h"
#include "assert.h"
#include "list_head.h"
#include "wait.h"
#include "scheduler.h"
#include "klib/list_head.h"
#include "process/wait.h"
#include "process/scheduler.h"
/// @brief Updates task execution statistics.
/// @param task the task to update.
+1 -1
View File
@@ -7,7 +7,7 @@
/// Change the header.
#define __DEBUG_HEADER__ "[WAIT ]"
#include "wait.h"
#include "process/wait.h"
static inline void __add_wait_queue(wait_queue_head_t *head, wait_queue_entry_t *wq)
{