OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [posix/] [src/] [waitpid.c] - Blame information for rev 1779

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1026 ivang
/*
2
 *  waitpid() - POSIX 1003.1 3.2.1
3
 *
4
 *  waitpid.c,v 1.4 2001/01/24 14:17:28 joel Exp
5
 */
6
 
7
#if HAVE_CONFIG_H
8
#include "config.h"
9
#endif
10
 
11
#include <sys/types.h>
12
#include <sys/wait.h>
13
#include <errno.h>
14
 
15
int waitpid(
16
  pid_t pid,
17
  int *stat_loc,
18
  int options
19
)
20
{
21
  errno = ENOSYS;
22
  return -1;
23
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.