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

Subversion Repositories or1k

[/] [or1k/] [tags/] [start/] [insight/] [libiberty/] [waitpid.c] - Blame information for rev 1780

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

Line No. Rev Author Line
1 578 markom
#ifdef HAVE_CONFIG_H
2
#include "config.h"
3
#endif
4
#ifdef HAVE_SYS_WAIT_H
5
#include <sys/wait.h>
6
#endif
7
 
8
int
9
waitpid (pid, stat_loc, options)
10
        int pid, *stat_loc, options;
11
{
12
  for (;;)
13
    {
14
      int wpid = wait(stat_loc);
15
      if (wpid == pid || wpid == -1)
16
        return wpid;
17
    }
18
}

powered by: WebSVN 2.1.0

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