diff options
author | Roland McGrath <roland@gnu.org> | 1995-09-17 21:57:42 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-09-17 21:57:42 +0000 |
commit | 6db64ebf26f6fd64aa0b86940fe7ab74be0d45cb (patch) | |
tree | 209c59108f7fa4d200535bd034ff51bb353698e7 /hurd | |
parent | a6bae4576e1d426d40a7bcc8df1b8926e7aab3d7 (diff) |
(EXEC_STACK_ARGS): New macro.
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/hurd_types.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hurd/hurd_types.h b/hurd/hurd_types.h index 7c6658e2..f4b3ec4b 100644 --- a/hurd/hurd_types.h +++ b/hurd/hurd_types.h @@ -71,7 +71,9 @@ typedef struct stat io_statbuf_t; #define EXEC_NEWTASK 0x00000001 /* Create new task; kill old one. */ #define EXEC_SECURE 0x00000002 /* Use secure values of portarray, etc. */ #define EXEC_DEFAULTS 0x00000004 /* Use defaults for unspecified ports. */ +/* These two are passed through by the exec server but not examined by it. */ #define EXEC_TRACED 0x00000008 /* Process is traced. */ +#define EXEC_STACK_ARGS 0x00000010 /* Use arguments from stack, not RPC. */ #define EXEC_INHERITED (EXEC_TRACED) /* Flags inherited by later execs. */ /* Bits for flags in fs.defs:file_set_translator call: */ |