source: rtems/c/src/exec/posix/src/waitpid.c @ 8ef3818

4.104.114.84.95
Last change on this file since 8ef3818 was 8ef3818, checked in by Joel Sherrill <joel.sherrill@…>, on 06/12/00 at 19:57:02

Patch from John Cotton <john.cotton@…>, Charles-Antoine Gauthier
<charles.gauthier@…>, and Darlene A. Stewart
<Darlene.Stewart@…> to add support for a number of very
significant things:

+ BSPs for many variations on the Motorola MBX8xx board series
+ Cache Manager including initial support for m68040

and PowerPC

+ Rework of mpc8xx libcpu code so all mpc8xx CPUs now use

same code base.

+ Rework of eth_comm BSP to utiltize above.

John reports this works on the 821 and 860

  • Property mode set to 100644
File size: 215 bytes
Line 
1/*
2 *  waitpid() - POSIX 1003.1 3.2.1
3 *
4 *  $Id$
5 */
6
7#include <sys/types.h>
8#include <sys/wait.h>
9#include <errno.h>
10
11int waitpid(
12  pid_t pid,
13  int *stat_loc,
14  int options
15)
16{
17  errno = ENOSYS;
18  return -1;
19}
Note: See TracBrowser for help on using the repository browser.