wait.inl

来自「一个开源的网络开发库ACE」· INL 代码 · 共 43 行

INL
43
字号
/* wait.inl,v 1.2 2001/08/22 14:21:53 joeh Exp -*- 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 */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?