diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-04-10 19:59:37 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-04-10 19:59:37 +0000 |
commit | 3df4acfa816441fc28a95dee6d0191a927145d95 (patch) | |
tree | b5ae7ca44662cfd8e5c95f1826e4406021a606f5 /PACE/pace/sys/wait.h | |
parent | 60a5612b83d856fc0adc52b9f39fac9960ec9818 (diff) | |
download | ATCD-pre-subset.tar.gz |
This commit was manufactured by cvs2svn to create tag 'pre-subset'.pre-subset
Diffstat (limited to 'PACE/pace/sys/wait.h')
-rw-r--r-- | PACE/pace/sys/wait.h | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/PACE/pace/sys/wait.h b/PACE/pace/sys/wait.h deleted file mode 100644 index 8fc12e00bd8..00000000000 --- a/PACE/pace/sys/wait.h +++ /dev/null @@ -1,67 +0,0 @@ -/* $Id$ - - * ============================================================================ - * - * = LIBRARY - * pace - * - * = FILENAME - * pace/sys/wait.h - * - * = AUTHOR - * Luther Baker - * - * ============================================================================ */ - -#ifndef PACE_WAIT_H -#define PACE_WAIT_H - -#include "pace/config/defines.h" -#include "pace/sys/types.h" - -#if (PACE_HAS_POSIX) -# include "pace/posix/wait.h" -#elif (PACE_VXWORKS) -# include "pace/vxworks/wait.h" -#elif (PACE_WIN32) -# include "pace/win32/wait.h" -#endif - -#if defined (PACE_HAS_CPLUSPLUS) -extern "C" { -#endif /* PACE_HAS_CPLUSPLUS */ - /** - PACE's implementation of the POSIX function wait. - See POSIX standard (Internation Standard ISO/IEC 9945-1:1996; - IEEE Std 1003.1, 1996 Edition), Section 3.2.1. - */ -#if (PACE_HAS_POSIX_MP_UOF) - PACE_Export PACE_INLINE pace_pid_t pace_wait (int * statloc); -#endif /* PACE_HAS_POSIX_MP_UOF */ - - /** - PACE's implementation of the POSIX function waitpid. - See POSIX standard (Internation Standard ISO/IEC 9945-1:1996; - IEEE Std 1003.1, 1996 Edition), Section 3.2.1. - */ -#if (PACE_HAS_POSIX_MP_UOF) - PACE_Export PACE_INLINE pace_pid_t pace_waitpid (pace_pid_t pid, - int * statloc, - int options); -#endif /* PACE_HAS_POSIX_MP_UOF */ - -#if defined (PACE_HAS_INLINE) -# if (PACE_HAS_POSIX) -# include "pace/posix/wait.inl" -# elif (PACE_VXWORKS) -# include "pace/vxworks/wait.inl" -# elif (PACE_WIN32) -# include "pace/win32/wait.inl" -# endif -#endif /* PACE_HAS_INLINE */ - -#if defined (PACE_HAS_CPLUSPLUS) -} -#endif /* PACE_HAS_CPLUSPLUS */ - -#endif /* PACE_WAIT_H */ |