binutils-gdb/gdb/testsuite/gdb.base/foll-fork.c

32 lines
515 B
C
Raw Normal View History

1999-06-29 01:04:32 +02:00
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
1999-06-29 01:04:32 +02:00
void callee (int i)
{
/* Any output corrupts GDB CLI expect strings.
printf("callee: %d\n", i); */
1999-06-29 01:04:32 +02:00
}
int main (void)
{
int pid;
int v = 5;
pid = fork ();
if (pid == 0) /* set breakpoint here */
1999-06-29 01:04:32 +02:00
{
v++;
/* printf ("I'm the child!\n"); */
callee (getpid ());
1999-06-29 01:04:32 +02:00
}
else
{
v--;
/* printf ("I'm the proud parent of child #%d!\n", pid); */
callee (getpid ());
1999-06-29 01:04:32 +02:00
}
exit (0); /* at exit */
1999-06-29 01:04:32 +02:00
}