summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base/interrupt.c
blob: bafbaa521d24fe80e7fe0ea6143eac4a1f74a848 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <errno.h>
#include <stdio.h>
int
main ()
{
  char x;
  int nbytes;
  printf ("talk to me baby\n");
  while (1)
    {
      nbytes = read (0, &x, 1);
      if (nbytes < 0)
	{
	  if (errno != EINTR)
	    perror ("");
	}
      else if (nbytes == 0)
	{
	  printf ("end of file\n");
	  exit (0);
	}
      else
	write (1, &x, 1);
    }
}

int
func1 ()
{
  return 4;
}