Initial creation of sourceware repository
This commit is contained in:
parent
cd946cff9e
commit
c906108c21
2470 changed files with 976797 additions and 0 deletions
37
gdb/testsuite/gdb.base/interrupt.c
Normal file
37
gdb/testsuite/gdb.base/interrupt.c
Normal file
|
@ -0,0 +1,37 @@
|
|||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
int
|
||||
main ()
|
||||
{
|
||||
char x;
|
||||
int nbytes;
|
||||
#ifdef usestubs
|
||||
set_debug_traps();
|
||||
breakpoint();
|
||||
#endif
|
||||
printf ("talk to me baby\n");
|
||||
while (1)
|
||||
{
|
||||
nbytes = read (0, &x, 1);
|
||||
if (nbytes < 0)
|
||||
{
|
||||
#ifdef EINTR
|
||||
if (errno != EINTR)
|
||||
#endif
|
||||
perror ("");
|
||||
}
|
||||
else if (nbytes == 0)
|
||||
{
|
||||
printf ("end of file\n");
|
||||
exit (0);
|
||||
}
|
||||
else
|
||||
write (1, &x, 1);
|
||||
}
|
||||
}
|
||||
|
||||
int
|
||||
func1 ()
|
||||
{
|
||||
return 4;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue