diff options
author | harrison <harrison@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-05-30 02:31:47 +0000 |
---|---|---|
committer | harrison <harrison@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-05-30 02:31:47 +0000 |
commit | 607eb91dcd1f06c4e507c0f5e85efc89c79dc6d8 (patch) | |
tree | 722f6d6393ab0ff7a75fc457b891a2944bc3202e /ace/Process.i | |
parent | 571fcfcc6872fc0f97b070106139733dd31503e0 (diff) | |
download | ATCD-607eb91dcd1f06c4e507c0f5e85efc89c79dc6d8.tar.gz |
Removed the class ACE_Process_Old.
Diffstat (limited to 'ace/Process.i')
-rw-r--r-- | ace/Process.i | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/ace/Process.i b/ace/Process.i index ef411a61f9e..b52c2ef03d9 100644 --- a/ace/Process.i +++ b/ace/Process.i @@ -33,29 +33,6 @@ ACE_Process::kill (int signum) // ************************************************************ -ACE_INLINE pid_t -ACE_Process_Old::getpid (void) -{ -#if defined (ACE_WIN32) - return process_info_.dwProcessId; -#else /* ACE_WIN32 */ - return child_id_; -#endif /* ACE_WIN32 */ -} - -ACE_INLINE int -ACE_Process_Old::kill (int signum) -{ -#if defined (ACE_WIN32) - ACE_UNUSED_ARG (signum); - return (int) ::TerminateProcess (this->process_info_.hProcess, 0); -#else - return ACE_OS::kill (this->getpid (), signum); -#endif /* ACE_WIN32 */ -} - -// ************************************************************ - #if defined (ACE_WIN32) ACE_INLINE u_long |