summaryrefslogtreecommitdiff
path: root/sys/include
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-07-02 21:41:29 -0400
committerIan Moffett <ian@osmora.org>2024-07-02 21:41:29 -0400
commit531f6f7b00821867bb4941b05bcbeea9f0357557 (patch)
tree657ca5b1a6ec0ed25e4d360a6cd5c3ddf9ae0d55 /sys/include
parent2d7bc823503167276c6d3c40500c3055d4f38938 (diff)
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 <ian@osmora.org>
Diffstat (limited to 'sys/include')
-rw-r--r--sys/include/sys/proc.h1
1 files changed, 0 insertions, 1 deletions
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);