From 531f6f7b00821867bb4941b05bcbeea9f0357557 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Tue, 2 Jul 2024 21:41:29 -0400 Subject: kernel: proc: Remove PROC_INEXEC flag This commit removes handling of the PROC_INEXEC flag as md_td_kick() takes care of the transfer to user mode in a cleaner way. Signed-off-by: Ian Moffett --- sys/include/sys/proc.h | 1 - 1 file changed, 1 deletion(-) (limited to 'sys/include') diff --git a/sys/include/sys/proc.h b/sys/include/sys/proc.h index 805c4a5..ceeb5e4 100644 --- a/sys/include/sys/proc.h +++ b/sys/include/sys/proc.h @@ -58,7 +58,6 @@ struct proc { #define PROC_EXITING BIT(0) /* Exiting */ #define PROC_EXEC BIT(1) /* Exec called (cleared by sched) */ -#define PROC_INEXEC BIT(2) /* Exec in progress */ struct proc *this_td(void); int md_fork(struct proc *p, struct proc *parent, uintptr_t ip); -- cgit v1.2.3