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

Side by Side Diff: gdb/gdbserver/linux-m68k-low.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/gdbserver/linux-m32r-low.c ('k') | gdb/gdbserver/linux-mips-low.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* GNU/Linux/m68k specific low level interface, for the remote server for GDB. 1 /* GNU/Linux/m68k specific low level interface, for the remote server for GDB.
2 Copyright (C) 1995-1996, 1998-2005, 2007-2012 Free Software 2 Copyright (C) 1995-1996, 1998-2005, 2007-2012 Free Software
3 Foundation, Inc. 3 Foundation, Inc.
4 4
5 This file is part of GDB. 5 This file is part of GDB.
6 6
7 This program is free software; you can redistribute it and/or modify 7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by 8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or 9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version. 10 (at your option) any later version.
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 *base = (void *) ((char *)*base - idx); 172 *base = (void *) ((char *)*base - idx);
173 173
174 return PS_OK; 174 return PS_OK;
175 } 175 }
176 #endif /* PTRACE_GET_THREAD_AREA */ 176 #endif /* PTRACE_GET_THREAD_AREA */
177 177
178 struct linux_target_ops the_low_target = { 178 struct linux_target_ops the_low_target = {
179 init_registers_m68k, 179 init_registers_m68k,
180 m68k_num_regs, 180 m68k_num_regs,
181 m68k_regmap, 181 m68k_regmap,
182 NULL,
182 m68k_cannot_fetch_register, 183 m68k_cannot_fetch_register,
183 m68k_cannot_store_register, 184 m68k_cannot_store_register,
185 NULL, /* fetch_register */
184 m68k_get_pc, 186 m68k_get_pc,
185 m68k_set_pc, 187 m68k_set_pc,
186 m68k_breakpoint, 188 m68k_breakpoint,
187 m68k_breakpoint_len, 189 m68k_breakpoint_len,
188 NULL, 190 NULL,
189 2, 191 2,
190 m68k_breakpoint_at, 192 m68k_breakpoint_at,
191 }; 193 };
OLDNEW
« no previous file with comments | « gdb/gdbserver/linux-m32r-low.c ('k') | gdb/gdbserver/linux-mips-low.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698