OLD | NEW |
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 Loading... |
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 Loading... |
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 |
None
OLD | NEW |