Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(270)

Side by Side Diff: gdb/testsuite/gdb.base/sigall.c

Issue 11969036: Merge GDB 7.5.1 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@master
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gdb/testsuite/gdb.base/shreloc.exp ('k') | gdb/testsuite/gdb.base/sigall.exp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
None
OLDNEW
1 #include <signal.h> 1 #include <signal.h>
2 #include <unistd.h> 2 #include <unistd.h>
3 3
4 #ifdef __sh__
5 #define signal(a,b) /* Signals not supported on this target - make them go a way */
6 #endif
7 4
8 /* Signal handlers, we set breakpoints in them to make sure that the 5 /* Signal handlers, we set breakpoints in them to make sure that the
9 signals really get delivered. */ 6 signals really get delivered. */
10 7
11 #ifdef PROTOTYPES 8 #ifdef PROTOTYPES
12 void 9 void
13 handle_ABRT (int sig) 10 handle_ABRT (int sig)
14 #else 11 #else
15 void 12 void
16 handle_ABRT (sig) 13 handle_ABRT (sig)
(...skipping 1550 matching lines...) Expand 10 before | Expand all | Expand 10 after
1567 #endif 1564 #endif
1568 return 0; 1565 return 0;
1569 } 1566 }
1570 1567
1571 int 1568 int
1572 gen_TERM () 1569 gen_TERM ()
1573 { 1570 {
1574 kill (getpid (), SIGTERM); 1571 kill (getpid (), SIGTERM);
1575 return 0; 1572 return 0;
1576 } 1573 }

error: old chunk mismatch

OLDNEW
« no previous file with comments | « gdb/testsuite/gdb.base/shreloc.exp ('k') | gdb/testsuite/gdb.base/sigall.exp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698