From 2675f920652cc9218b4b3dc513c76b0546a5a5ae Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 22 Mar 2018 13:24:02 +0100 Subject: sys/linux: add cgroup descriptions --- executor/common.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'executor/common.h') diff --git a/executor/common.h b/executor/common.h index 9cc300fb8..c1fcbae88 100644 --- a/executor/common.h +++ b/executor/common.h @@ -42,6 +42,12 @@ typedef unsigned int uint32; typedef unsigned short uint16; typedef unsigned char uint8; +#ifdef SYZ_EXECUTOR +// Note: zircon max fd is 256. +const int kInPipeFd = 250; // remapped from stdin +const int kOutPipeFd = 251; // remapped from stdout +#endif + #if defined(__GNUC__) #define SYSCALLAPI #define NORETURN __attribute__((noreturn)) -- cgit mrf-deployment