summaryrefslogtreecommitdiff
path: root/PACE/pace/vxworks/wait.inl
blob: 1aee5137b7fcad5434055462dda6c620c5ed7c08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* $Id$ -*- C -*-

 * =============================================================================
 *
 * = LIBRARY
 *    pace
 *
 * = FILENAME
 *    pace/vxworks/wait.inl
 *
 * = AUTHOR
 *    Joe Hoffert
 *
 * ============================================================================= */

#include <sys/wait.h>

#if (PACE_HAS_POSIX_MP_UOF)
PACE_INLINE
pid_t
pace_wait (int * statloc)
{
  PACE_TRACE("pace_wait");

  PACE_UNUSED_ARG (statloc);
  PACE_ERRNO_NO_SUPPORT_RETURN (0);
}
#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_TRACE("pace_waitpid");

  PACE_UNUSED_ARG (pid);
  PACE_UNUSED_ARG (statloc);
  PACE_UNUSED_ARG (options);
  PACE_ERRNO_NO_SUPPORT_RETURN (0);
}
#endif /* PACE_HAS_POSIX_MP_UOF */