diff options
author | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-02-23 17:16:19 +0000 |
---|---|---|
committer | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-02-23 17:16:19 +0000 |
commit | 15ed7f0745ea35aeb5c4104d413c6007484c0a86 (patch) | |
tree | eb074ecbae3d13af87f58b8e30b8e4612e83a281 /ace/Process.h | |
parent | 01c490b1dd7a43a722fe7f6c90e0b783e9f70f3f (diff) | |
download | ATCD-15ed7f0745ea35aeb5c4104d413c6007484c0a86.tar.gz |
Define NO_EXEC as 0 on Win32.
Diffstat (limited to 'ace/Process.h')
-rw-r--r-- | ace/Process.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ace/Process.h b/ace/Process.h index d29fe9a491c..4ef98cf8741 100644 --- a/ace/Process.h +++ b/ace/Process.h @@ -32,7 +32,11 @@ public: { DEFAULT_COMMAND_LINE_BUF_LEN = 1024, // UNIX process creation flags. +#if defined (ACE_WIN32) + NO_EXEC = 0 +#else NO_EXEC = 1 +#endif /* ACE_WIN32 */ }; ACE_Process_Options (int inherit_environment = 1, |