diff options
author | nw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-06-13 08:56:22 +0000 |
---|---|---|
committer | nw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-06-13 08:56:22 +0000 |
commit | a17d0a6855d8282e06cc2bd769ad07477044b443 (patch) | |
tree | a2503a3a5ec7db3e2cb4b7a43745608a94babf9c | |
parent | 2575b1c725f4d364222e6e5ee9d94484e85d042c (diff) | |
download | ATCD-a17d0a6855d8282e06cc2bd769ad07477044b443.tar.gz |
*** empty log message ***
-rw-r--r-- | ChangeLog-97a | 4 | ||||
-rw-r--r-- | examples/OS/Process/process.cpp | 12 |
2 files changed, 9 insertions, 7 deletions
diff --git a/ChangeLog-97a b/ChangeLog-97a index 55debd6ac98..5f3824cecf1 100644 --- a/ChangeLog-97a +++ b/ChangeLog-97a @@ -8,7 +8,9 @@ Fri Jun 13 03:13:51 1997 Nanbor Wang <nw1@dingo.wolfpack.cs.wustl.edu> * examples/OS/Process/process.cpp: Updated class name ACE_ProcessEX to ACE_Process because ACE_ProcessEX no longer - exists. + exists. Also, all exec'ed programs' absolute names have been + changed and let the environment variable "path" to decide which + program(s) to exec. Thu Jun 12 15:48:16 1997 Chris Cleeland <cleeland@cs.wustl.edu> diff --git a/examples/OS/Process/process.cpp b/examples/OS/Process/process.cpp index 2e4c94518ff..e5342f320b7 100644 --- a/examples/OS/Process/process.cpp +++ b/examples/OS/Process/process.cpp @@ -22,13 +22,13 @@ #include "ace/Process.h" #if defined (ACE_WIN32) -#define EXEC_NAME "c:\\WINNT35\\system32\\MORE.COM" -const char *DATE_PATH = "c:\\Utils\\bin\\date.exe"; -const char *LS_PATH = "c:\\Utils\\bin\\ls.exe"; +#define EXEC_NAME "MORE.COM" +const char *DATE_PATH = "date.exe"; +const char *LS_PATH = "ls.exe"; #else -#define EXEC_NAME "/pkg/gnu/bin/less" -const char *DATE_PATH = "/usr/bin/date"; -const char *LS_PATH = "/usr/bin/ls"; +#define EXEC_NAME "less" +const char *DATE_PATH = "date"; +const char *LS_PATH = "ls"; #endif /* ACE_WIN32 */ static char *executable = EXEC_NAME; |