From db517cc2293ea53bebd9730d20ed35db46c08b3b Mon Sep 17 00:00:00 2001 From: Xiang Xiao Date: Thu, 6 May 2021 10:57:42 -0700 Subject: [PATCH] include/spawn.h: Add POSIX_SPAWN_SETSID definition Signed-off-by: Xiang Xiao Change-Id: I7ad654a1cb9b74a9f27f52c88fffa8b487a48f33 --- include/spawn.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/spawn.h b/include/spawn.h index 517daaab5b4..c999f1ba386 100644 --- a/include/spawn.h +++ b/include/spawn.h @@ -53,6 +53,7 @@ #define POSIX_SPAWN_SETSCHEDULER (1 << 3) /* 1: Set task's scheduler policy */ #define POSIX_SPAWN_SETSIGDEF (1 << 4) /* 1: Set default signal actions */ #define POSIX_SPAWN_SETSIGMASK (1 << 5) /* 1: Set sigmask */ +#define POSIX_SPAWN_SETSID (1 << 7) /* 1: Create the new session(glibc specific) */ /**************************************************************************** * Type Definitions