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

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-gdb/] [gdb-6.8/] [gdb/] [testsuite/] [gdb.base/] [foll-vfork.c] - Blame information for rev 25

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 25 jlechner
#include <stdio.h>
2
#include <unistd.h>
3
 
4
#ifdef PROTOTYPES
5
int main (void)
6
#else
7
main ()
8
#endif
9
{
10
  int  pid;
11
 
12
  pid = vfork ();
13
  if (pid == 0) {
14
    printf ("I'm the child!\n");
15
    execlp ("gdb.base/vforked-prog", "gdb.base/vforked-prog", (char *)0);
16
  }
17
  else {
18
    printf ("I'm the proud parent of child #%d!\n", pid);
19
  }
20
}

powered by: WebSVN 2.1.0

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