From 85e57f7480bc6b5a2877dca6ad86e22f094b825e Mon Sep 17 00:00:00 2001 From: Krishnan Winter Date: Fri, 1 Aug 2025 16:38:40 +1000 Subject: [PATCH] thread_ctrl: Remove unused flags Signed-off-by: Krishnan Winter --- include/object/tcb.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/include/object/tcb.h b/include/object/tcb.h index 8aa911d6a..8b8a95ff6 100644 --- a/include/object/tcb.h +++ b/include/object/tcb.h @@ -220,11 +220,6 @@ enum thread_control_flag { thread_control_update_ipc_buffer = 0x2, thread_control_update_space = 0x4, thread_control_update_mcp = 0x8, -#ifdef CONFIG_KERNEL_MCS - thread_control_update_sc = 0x10, - thread_control_update_fault = 0x20, - thread_control_update_timeout = 0x40, -#endif }; #endif