aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base/foll-vfork.c
blob: 3c7fab573fa70fe768fc5b5fa79ad49bd1f0e192 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <stdio.h>
#include <unistd.h>

#ifdef PROTOTYPES
int main (void)
#else
main ()
#endif
{
  int  pid;

  pid = vfork ();
  if (pid == 0) {
    printf ("I'm the child!\n");
    execlp ("gdb.base/vforked-prog", "gdb.base/vforked-prog", (char *)0);
  }
  else {
    printf ("I'm the proud parent of child #%d!\n", pid);
  }
}