From fa014b5b5c3424ba1fe345c2316ff24cb3b488b0 Mon Sep 17 00:00:00 2001 From: antifallobst Date: Sun, 19 Feb 2023 00:07:02 +0100 Subject: [PATCH] fix (kernel): removed not needed enum --- kernel/inc/proc/thread.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/kernel/inc/proc/thread.h b/kernel/inc/proc/thread.h index 46879aa..aa8e9d7 100644 --- a/kernel/inc/proc/thread.h +++ b/kernel/inc/proc/thread.h @@ -19,10 +19,6 @@ #include "utils/stdtypes.h" #include "platform/cpu.h" -typedef enum { - THREAD_NONE = -1 -} thread_standard_E; - typedef struct thread_descriptor_T thread_descriptor_T; typedef const thread_descriptor_T* thread_t;