aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2019-02-12 08:43:06 +0000
committerRon Yorston <rmy@pobox.com>2019-02-12 08:43:06 +0000
commit7a8bd5ae33d8c390763f0787afe6b8c495e2d978 (patch)
tree29b0abb320d73b37f4fa4d9b355b3b32db42e836 /include
parent0eda390d68c456975289471e68b615ae096ab33b (diff)
parentf81e0120f4478c58e126bcadb19b9954ed184e8f (diff)
downloadbusybox-w32-7a8bd5ae33d8c390763f0787afe6b8c495e2d978.tar.gz
busybox-w32-7a8bd5ae33d8c390763f0787afe6b8c495e2d978.tar.bz2
busybox-w32-7a8bd5ae33d8c390763f0787afe6b8c495e2d978.zip
Merge branch 'busybox' into merge
Diffstat (limited to 'include')
-rw-r--r--include/libbb.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 1b5994357..0c7e03ee8 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -1244,11 +1244,11 @@ void set_task_comm(const char *comm) FAST_FUNC;
1244 * to /dev/null if they are not. 1244 * to /dev/null if they are not.
1245 */ 1245 */
1246enum { 1246enum {
1247 DAEMON_CHDIR_ROOT = 1, 1247 DAEMON_CHDIR_ROOT = 1 << 0,
1248 DAEMON_DEVNULL_STDIO = 2, 1248 DAEMON_DEVNULL_STDIO = 1 << 1,
1249 DAEMON_CLOSE_EXTRA_FDS = 4, 1249 DAEMON_CLOSE_EXTRA_FDS = 1 << 2,
1250 DAEMON_ONLY_SANITIZE = 8, /* internal use */ 1250 DAEMON_ONLY_SANITIZE = 1 << 3, /* internal use */
1251 DAEMON_DOUBLE_FORK = 16, /* double fork to avoid controlling tty */ 1251 //DAEMON_DOUBLE_FORK = 1 << 4, /* double fork to avoid controlling tty */
1252}; 1252};
1253#if BB_MMU 1253#if BB_MMU
1254 enum { re_execed = 0 }; 1254 enum { re_execed = 0 };