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

Side by Side Diff: gdb/target.h

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/symtab.c ('k') | gdb/target.c » ('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 /* Interface between GDB and target environments, including files and processes 1 /* Interface between GDB and target environments, including files and processes
2 2
3 Copyright (C) 1990-2012 Free Software Foundation, Inc. 3 Copyright (C) 1990-2012 Free Software Foundation, Inc.
4 4
5 Contributed by Cygnus Support. Written by John Gilmore. 5 Contributed by Cygnus Support. Written by John Gilmore.
6 6
7 This file is part of GDB. 7 This file is part of GDB.
8 8
9 This program is free software; you can redistribute it and/or modify 9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by 10 it under the terms of the GNU General Public License as published by
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 157
158 struct target_waitstatus 158 struct target_waitstatus
159 { 159 {
160 enum target_waitkind kind; 160 enum target_waitkind kind;
161 161
162 /* Forked child pid, execd pathname, exit status, signal number or 162 /* Forked child pid, execd pathname, exit status, signal number or
163 syscall number. */ 163 syscall number. */
164 union 164 union
165 { 165 {
166 int integer; 166 int integer;
167 » enum target_signal sig; 167 » enum gdb_signal sig;
168 ptid_t related_pid; 168 ptid_t related_pid;
169 char *execd_pathname; 169 char *execd_pathname;
170 int syscall_number; 170 int syscall_number;
171 } 171 }
172 value; 172 value;
173 }; 173 };
174 174
175 /* Options that can be passed to target_wait. */ 175 /* Options that can be passed to target_wait. */
176 176
177 /* Return immediately if there's no event already queued. If this 177 /* Return immediately if there's no event already queued. If this
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 /* The HP-UX registers (those that can be obtained or modified by using 270 /* The HP-UX registers (those that can be obtained or modified by using
271 the TT_LWP_RUREGS/TT_LWP_WUREGS ttrace requests). */ 271 the TT_LWP_RUREGS/TT_LWP_WUREGS ttrace requests). */
272 TARGET_OBJECT_HPUX_UREGS, 272 TARGET_OBJECT_HPUX_UREGS,
273 /* The HP-UX shared library linkage pointer. ANNEX should be a string 273 /* The HP-UX shared library linkage pointer. ANNEX should be a string
274 image of the code address whose linkage pointer we are looking for. 274 image of the code address whose linkage pointer we are looking for.
275 275
276 The size of the data transfered is always 8 bytes (the size of an 276 The size of the data transfered is always 8 bytes (the size of an
277 address on ia64). */ 277 address on ia64). */
278 TARGET_OBJECT_HPUX_SOLIB_GOT, 278 TARGET_OBJECT_HPUX_SOLIB_GOT,
279 /* Traceframe info, in XML format. */ 279 /* Traceframe info, in XML format. */

error: old chunk mismatch

OLDNEW
« no previous file with comments | « gdb/symtab.c ('k') | gdb/target.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698