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

Side by Side Diff: sim/h8300/compile.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 | « sim/h8300/aclocal.m4 ('k') | sim/h8300/config.in » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Simulator for the Renesas (formerly Hitachi) H8/300 architecture. 2 * Simulator for the Renesas (formerly Hitachi) H8/300 architecture.
3 * 3 *
4 * Written by Steve Chamberlain of Cygnus Support. sac@cygnus.com 4 * Written by Steve Chamberlain of Cygnus Support. sac@cygnus.com
5 * 5 *
6 * This file is part of H8/300 sim 6 * This file is part of H8/300 sim
7 * 7 *
8 * 8 *
9 * THIS SOFTWARE IS NOT COPYRIGHTED 9 * THIS SOFTWARE IS NOT COPYRIGHTED
10 * 10 *
11 * Cygnus offers the following for use in the public domain. Cygnus makes no 11 * Cygnus offers the following for use in the public domain. Cygnus makes no
12 * warranty with regard to the software or its performance and the user 12 * warranty with regard to the software or its performance and the user
13 * accepts the software "AS IS" with all faults. 13 * accepts the software "AS IS" with all faults.
14 * 14 *
15 * CYGNUS DISCLAIMS ANY WARRANTIES, EXPRESS OR IMPLIED, WITH REGARD TO THIS 15 * CYGNUS DISCLAIMS ANY WARRANTIES, EXPRESS OR IMPLIED, WITH REGARD TO THIS
16 * SOFTWARE INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY 16 * SOFTWARE INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY
17 * AND FITNESS FOR A PARTICULAR PURPOSE. 17 * AND FITNESS FOR A PARTICULAR PURPOSE.
18 */ 18 */
19 19
20 #include "config.h"
20 #include <signal.h> 21 #include <signal.h>
21 #ifdef HAVE_TIME_H 22 #ifdef HAVE_TIME_H
22 #include <time.h> 23 #include <time.h>
23 #endif 24 #endif
24 #ifdef HAVE_STDLIB_H 25 #ifdef HAVE_STDLIB_H
25 #include <stdlib.h> 26 #include <stdlib.h>
26 #endif 27 #endif
27 #ifdef HAVE_SYS_PARAM_H 28 #ifdef HAVE_SYS_PARAM_H
28 #include <sys/param.h> 29 #include <sys/param.h>
29 #endif 30 #endif
(...skipping 5075 matching lines...) Expand 10 before | Expand all | Expand 10 after
5105 } 5106 }
5106 5107
5107 return SIM_RC_OK; 5108 return SIM_RC_OK;
5108 } 5109 }
5109 5110
5110 void 5111 void
5111 sim_set_callbacks (struct host_callback_struct *ptr) 5112 sim_set_callbacks (struct host_callback_struct *ptr)
5112 { 5113 {
5113 sim_callback = ptr; 5114 sim_callback = ptr;
5114 } 5115 }
OLDNEW
« no previous file with comments | « sim/h8300/aclocal.m4 ('k') | sim/h8300/config.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698