summaryrefslogtreecommitdiff
path: root/sys/include
diff options
context:
space:
mode:
Diffstat (limited to 'sys/include')
-rw-r--r--sys/include/sys/proc.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/include/sys/proc.h b/sys/include/sys/proc.h
index 7b03672..0a7d133 100644
--- a/sys/include/sys/proc.h
+++ b/sys/include/sys/proc.h
@@ -83,11 +83,7 @@ struct proc {
#define PROC_ZOMB BIT(2) /* Zombie (dead but not deallocated) */
#define PROC_LEAFQ BIT(3) /* Leaf queue is active */
#define PROC_WAITED BIT(4) /* Being waited on by parent */
-
-/*
- * Flags for exit1()
- */
-#define EXIT_KTD BIT(0) /* Kill a kernel thread */
+#define PROC_KTD BIT(5) /* Kernel thread */
struct proc *this_td(void);
struct proc *get_child(struct proc *cur, pid_t pid);