summaryrefslogtreecommitdiff
path: root/PACE
diff options
context:
space:
mode:
authorluther <luther@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-09-13 18:43:25 +0000
committerluther <luther@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-09-13 18:43:25 +0000
commit313e20318e2f7734dc3f4c92eec36b53b58a526f (patch)
treefc6538146fb803ca7c04489ad34bf5e2f6bb36b7 /PACE
parent141e8debd5de089f8dd6029bab7af1263aff88bf (diff)
downloadATCD-313e20318e2f7734dc3f4c92eec36b53b58a526f.tar.gz
Wed Sep 13 13:42:15 2000 Luther J Baker <luther@cs.wustl.edu>
Diffstat (limited to 'PACE')
-rw-r--r--PACE/ChangeLog7
-rw-r--r--PACE/pace/sys/wait.h8
-rw-r--r--PACE/pace/win32/wait.inl10
3 files changed, 16 insertions, 9 deletions
diff --git a/PACE/ChangeLog b/PACE/ChangeLog
index 8fbfb7930c5..674b9731936 100644
--- a/PACE/ChangeLog
+++ b/PACE/ChangeLog
@@ -1,5 +1,12 @@
+Wed Sep 13 13:42:15 2000 Luther J Baker <luther@cs.wustl.edu>
+
+ * pace/sys/wait.h:
+
+ More types changed to pace_*.
+
Wed Sep 13 13:25:33 2000 Luther J Baker <luther@cs.wustl.edu>
+ * pace/unistd.h:
* pace/win32/unistd.inl:
Even more type shifts to pace_*.
diff --git a/PACE/pace/sys/wait.h b/PACE/pace/sys/wait.h
index 4a902ce3e93..e83769217ea 100644
--- a/PACE/pace/sys/wait.h
+++ b/PACE/pace/sys/wait.h
@@ -36,7 +36,7 @@ extern "C" {
IEEE Std 1003.1, 1996 Edition), Section 3.2.1.
*/
#if (PACE_HAS_POSIX_MP_UOF)
- PACE_INLINE pid_t pace_wait (int * statloc);
+ PACE_INLINE pace_pid_t pace_wait (int * statloc);
#endif /* PACE_HAS_POSIX_MP_UOF */
/**
@@ -45,9 +45,9 @@ extern "C" {
IEEE Std 1003.1, 1996 Edition), Section 3.2.1.
*/
#if (PACE_HAS_POSIX_MP_UOF)
- PACE_INLINE pid_t pace_waitpid (pid_t pid,
- int * statloc,
- int options);
+ 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)
diff --git a/PACE/pace/win32/wait.inl b/PACE/pace/win32/wait.inl
index 5dfa04f579f..02c1aca2ce7 100644
--- a/PACE/pace/win32/wait.inl
+++ b/PACE/pace/win32/wait.inl
@@ -15,21 +15,21 @@
#if (PACE_HAS_POSIX_MP_UOF)
PACE_INLINE
-pid_t
+pace_pid_t
pace_wait (int * statloc)
{
- pid_t retval = -1;
+ pace_pid_t retval = -1;
PACE_ERRNO_NO_SUPPORT_RETURN (retval);
}
#endif /* PACE_HAS_POSIX_MP_UOF */
#if (PACE_HAS_POSIX_MP_UOF)
PACE_INLINE
-pid_t
-pace_waitpid (pid_t pid, int * statloc, int options)
+pace_pid_t
+pace_waitpid (pace_pid_t pid, int * statloc, int options)
{
/* ACE version uses a HANDLE */
- pid_t retval = -1;
+ pace_pid_t retval = -1;
PACE_ERRNO_NO_SUPPORT_RETURN (retval);
}
#endif /* PACE_HAS_POSIX_MP_UOF */