summaryrefslogtreecommitdiff
path: root/sys/include
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-07-17 00:38:04 -0400
committerIan Moffett <ian@osmora.org>2025-07-17 00:39:46 -0400
commit984b549864280696256cec135651770ff0b1251b (patch)
tree454eb966509fb6c374c7f82a542ae1413fb6e2cf /sys/include
parent38312546574f400bdccc422c4519e49dc06719a4 (diff)
kernel: spawn: Deprecate SPAWN_WAIT
Deprecate SPAWN_WAIT in favor of waitpid() Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include')
-rw-r--r--sys/include/sys/spawn.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/include/sys/spawn.h b/sys/include/sys/spawn.h
index 0c54e4c..28dbe5b 100644
--- a/sys/include/sys/spawn.h
+++ b/sys/include/sys/spawn.h
@@ -33,8 +33,6 @@
#include <sys/types.h>
#include <sys/param.h>
-#define SPAWN_WAIT BIT(0)
-
#if !defined(_KERNEL)
pid_t spawn(const char *pathname, char **argv, char **envp, int flags);
#endif /* _KERNEL */