blob: 1cb26ebfcaca58ea6ca15479ecb8846ca196603d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--- base/process/launch.h.orig 2014-10-02 17:18:52 UTC
+++ base/process/launch.h
@@ -113,14 +113,14 @@
// will be the same as its pid.
bool new_process_group;
-#if defined(OS_LINUX)
+#if defined(OS_LINUX) || defined(OS_FREEBSD)
// If non-zero, start the process using clone(), using flags as provided.
int clone_flags;
// By default, child processes will have the PR_SET_NO_NEW_PRIVS bit set. If
// true, then this bit will not be set in the new child process.
bool allow_new_privs;
-#endif // defined(OS_LINUX)
+#endif // defined(OS_LINUX) || defined(OS_FREEBSD)
#if defined(OS_CHROMEOS)
// If non-negative, the specified file descriptor will be set as the launched
|