]>
Commit | Line | Data |
---|---|---|
8310b29b FN |
1 | 2000-03-30 Fernando Nasser <[email protected]> |
2 | ||
3 | * wrapper.c (gdb_value_subscript, wrap_value_subscript): New functions. | |
4 | Safe version of value_subscript. | |
5 | * varobj.c (): Use gdb_value_subscript() to get an array element value. | |
6 | ||
1d1358b6 MS |
7 | 2000-03-30 Michael Snyder <[email protected]> |
8 | ||
9 | * ui-file.c: Include "gdb_string.h" | |
10 | * cli-out.c: Include gdb_string.h to avoid compiler warnings. | |
11 | * wrapper.[ch] (struct gdb_wrapper_arguments): Change fields into | |
12 | unions, since they are all used to hold both pointers and ints | |
13 | at various times. Casting pointer to int and vice versa gives | |
14 | warnings (and is not safe) if they are not the same size. | |
15 | ||
57e687d9 MS |
16 | 2000-03-30 Michael Snyder <[email protected]> |
17 | ||
213c01f7 | 18 | * defs.h (struct continuation_arg): Make 'data' a union, to avoid |
57e687d9 | 19 | casting problems when int and pointer are not the same size. |
213c01f7 MS |
20 | * event-top.c (command_handler): Use data as a union. |
21 | (command_line_handler_continuation): Ditto. | |
22 | * infcmd.c (step_1_continuation): Use data as a union. Re-indent. | |
23 | (step_once): ditto. (finish_command_continuation): Ditto. | |
24 | (finish_command): Ditto. | |
25 | * breakpoint.c (until_break_command): Use data as a union. | |
26 | (until_break_command_continuation): Ditto. | |
27 | * utils.c (add_intermediate_continuation): Fix typo in comment. | |
57e687d9 | 28 | |
59233f88 AC |
29 | Thu Mar 30 12:09:50 2000 Andrew Cagney <[email protected]> |
30 | ||
31 | * gdbarch.h, gdbarch.c: Re-indent. Remove FIXMEs. | |
32 | * gdbarch.sh: Re-sync with gdbarch.[hc]. | |
33 | ||
0729fd50 DB |
34 | 2000-03-29 Daniel Berlin <[email protected]> |
35 | ||
36 | * minsyms.c (add_minsym_to_demangled_hash_table): New function. | |
37 | (install_minimal_symbols): Fix demangled symbol problems caused by | |
38 | using add_minsym_to_hash_table for the demangled names, which is | |
39 | wrong. Now we use add_minsym_to_demangled_hash_table. | |
40 | (lookup_minimal_symbol): Fix problems with demangled symbol lookup | |
41 | caused by weird control flow. | |
42 | * symtab.h: Add add_minsym_to_demangled_hash_table prototype here. | |
43 | ||
d332c5ac JM |
44 | 2000-03-29 Jason Merrill <[email protected]> |
45 | ||
46 | * configure.in: -linux-gnu*, not -linux-gnu. | |
47 | ||
480ff1fb AC |
48 | Tue Mar 28 18:28:40 2000 Andrew Cagney <[email protected]> |
49 | ||
50 | * remote.c (remote_threads_extra_info): Replace qfThreadExtraInfo | |
51 | with qThreadExtraInfo. | |
52 | ||
0729fd50 DB |
53 | 2000-03-29 J.T. Conklin <[email protected]> |
54 | ||
55 | * i386nbsd-nat.c (fetch_core_registers): Make static. | |
56 | ||
57 | * m68knbsd-nat.c (fetch_core_registers): Make static. | |
58 | (m68knbsd_core_fns, _initialize_m68knbsd_nat): Added. | |
59 | ||
67edb2c6 AC |
60 | Wed Mar 29 13:40:40 2000 Andrew Cagney <[email protected]> |
61 | ||
62 | * TODO: Update GDB 5 status. | |
63 | ||
80ce1ecb AC |
64 | Wed Mar 29 10:16:35 2000 Andrew Cagney <[email protected]> |
65 | ||
66 | * breakpoint.h (remove_hw_watchpoints): Add declaration. | |
67 | * breakpoints.c (remove_hw_watchpoints): Update. | |
68 | * maint.c (maintenance_do_deprecate): Avoid assignment within IF | |
69 | condition. | |
70 | ||
692590c1 MS |
71 | 2000-03-28 Peter Schauer <[email protected]> |
72 | ||
73 | breakpoint.c, breakpoint.h (remove_hw_watchpoints): New function. | |
74 | infrun.c (resume): Remove hardware watchpoints before stepping | |
75 | when CANNOT_STEP_HW_WATCHPOINTS is nonzero. | |
76 | ||
e529db18 MS |
77 | 2000-03-28 Michael Snyder <[email protected]> |
78 | ||
213c01f7 | 79 | * Makefile.in: Anchor tui-file.h dependency to $srcdir. |
e529db18 | 80 | |
03905a3c MS |
81 | 2000-03-28 Peter Schauer <[email protected]> |
82 | ||
83 | * procfs.c (proc_set_watchpoint): Declare addr parameter as | |
84 | CORE_ADDR, to match call from procfs_set_watchpoint. | |
85 | ||
0729fd50 DB |
86 | * breakpoint.c (insert_breakpoints, do_enable_breakpoint): |
87 | Reselect the saved frame silently after frame selection for | |
c6902688 MS |
88 | watchpoint evaluation. |
89 | (insert_breakpoints): Add missing space in `Hardware watchpoint | |
90 | deleted' message. Do not reinsert hardware watchpoint if it is | |
91 | already marked for deletion at next stop. | |
92 | ||
7d88144c CF |
93 | 2000-03-28 Christopher Faylor <[email protected]> |
94 | ||
95 | * partial-stab.h: Add one more check against corrupted or irregular | |
96 | stabs entry. | |
97 | ||
f25d2425 PDM |
98 | Tue Mar 28 12:23:37 2000 Philippe De Muyter <[email protected]> |
99 | ||
100 | * gnu-regex.c (regerror): Function renamed from `__regerror'. | |
101 | (Change also approved in the mainline glibc sources) | |
102 | ||
2171aa41 AC |
103 | Tue Mar 28 18:19:50 2000 Andrew Cagney <[email protected]> |
104 | ||
105 | From 2000-03-20 Jonathan Larmour <[email protected]>: | |
106 | * ser-unix.c (do_unix_readchar): Reorganise to be more robust, | |
107 | particularly ensuring it can't return SERIAL_TIMEOUT when told | |
108 | not to time out. | |
109 | ||
5d161b24 DB |
110 | 2000-03-24 Daniel Berlin <[email protected]> |
111 | ||
112 | * gdbtypes.c (_initialize_gdbtypes): Add "set debug overload", | |
113 | which never existed before, and thus, has no deprecated old command. | |
114 | ||
115 | * gdbarch.c (_initialize_gdbarch): Add "set debug arch", deprecate | |
116 | "set archdebug" (same goes for the show commands). | |
117 | * gdb-events.c (_initialize_gdb_events): Add "set debug event", | |
118 | deprecate "set eventdebug" (same goes for the show commands). | |
119 | * gdbcmd.h: Add the setdebuglist and showdebuglist externs. | |
120 | * top.c (init_main): Deprecate remotedebug, use "set/show debug remote" | |
121 | instead. | |
122 | x(init_main): Add the "set debug" and "show debug" commands. | |
123 | Add setdebuglist and showdebuglist. | |
124 | ||
125 | Fri Mar 24 13:00:10 2000 Daniel Berlin <[email protected]> | |
126 | ||
127 | * maint.c (maintenance_do_deprecate): Fix crash if you call with no arguments, and fixed the warning. | |
128 | Added prototype for the deprecate command so it doesn't complain. | |
129 | ||
107b56f0 AC |
130 | Tue Mar 28 11:52:45 2000 Andrew Cagney <[email protected]> |
131 | ||
132 | * top.c (print_gdb_version): Bump copyright year to 2000. | |
133 | ||
c247e9c4 AC |
134 | Tue Mar 28 10:13:11 2000 Andrew Cagney <[email protected]> |
135 | ||
136 | * MAINTAINERS: Add Glen McCready to write after approval list. | |
137 | ||
3f1ef994 AC |
138 | Tue Mar 28 09:59:00 2000 Andrew Cagney <[email protected]> |
139 | ||
140 | * acconfig.h: Fix typo in comment describing HAVE_PTRACE_GETREGS. | |
141 | * config.h: Regenerate. | |
0729fd50 | 142 | |
138f88c0 AC |
143 | Mon Mar 27 19:53:29 2000 Andrew Cagney <[email protected]> |
144 | ||
145 | * TODO: Update. Add criteria for next release of GDB. | |
146 | ||
e7d0728a AC |
147 | Mon Mar 27 17:20:25 2000 Andrew Cagney <[email protected]> |
148 | ||
149 | * acconfig.h: Provide default for HAVE_PTRACE_GETREGS. | |
150 | * config.h: Regenerate. | |
151 | ||
ee29d710 AC |
152 | Mon Mar 27 16:43:35 2000 Andrew Cagney <[email protected]> |
153 | ||
154 | * Makefile.in (install-only): Create $(bindir) and $(man1dir) | |
155 | before installing GDB. | |
156 | ||
2e022a79 AC |
157 | Mon Mar 27 16:26:11 2000 Andrew Cagney <[email protected]> |
158 | ||
159 | * Makefile.in (all-gdbtk): Check for an existing link/directory. | |
160 | Re-format warning message. Document that post 5.0 this can be | |
161 | deleted. | |
162 | ||
beb998c6 AC |
163 | Mon Mar 27 14:46:37 2000 Andrew Cagney <[email protected]> |
164 | ||
165 | * ChangeLog: Revert whitespace changes. | |
166 | ||
56a5d675 AC |
167 | Mon Mar 27 10:20:34 2000 Andrew Cagney <[email protected]> |
168 | ||
169 | * MAINTAINERS: Update folks who need accounts. | |
170 | ||
d6184fa1 AC |
171 | Mon Mar 27 09:29:14 2000 Andrew Cagney <[email protected]> |
172 | ||
173 | * MAINTAINERS: J.T. Conklin is NetBSD maintainer. | |
174 | ||
6e2e8c24 MK |
175 | 2000-03-27 Mark Kettenis <[email protected]> |
176 | ||
177 | * config/i386/tm-i386.h: Fix typo. It is TARGET_LONG_DOUBLE_BIT | |
178 | instead of TARGET_LONG_DOUBLE_BITS. | |
179 | * config/i386/tm-i386mk.h: Likewise. | |
180 | ||
ac27f131 MK |
181 | 2000-03-26 Mark Kettenis <[email protected]> |
182 | ||
183 | Provide `long double' support for most i386 targets. | |
184 | * config/i386/tm-i386.h (TARGET_LONG_DOUBLE_FORMAT): Define as | |
185 | &floatformat_i387_ext. | |
186 | (TARGET_LONG_DOUBLE_BITS): Define as 96. | |
187 | (REGISTER_VIRTUAL_TYPE): Change type for FPU registers to | |
188 | `builtin_type_long_double'. | |
189 | (REGISTER_CONVERT_TO_VIRTUAL): Call | |
190 | i386_register_convert_to_virtual. | |
191 | (REGISTER_CONVERT_TO_RAW): Call i386_register_convert_to_raw. | |
192 | (i387_to_double, double_to_i387): Remove prototypes. | |
193 | (i386_extract_return_value): Change prototype to match definition | |
194 | in i386-tdep.c. | |
195 | * config/i386/tm-i386mk.h (TARGET_LONG_DOUBLE_FORMAT): #undef. | |
196 | (TARGET_LONG_DOUBLE_BITS): #undef. | |
197 | * config/i386/tm-linux.h (TARGET_LONG_DOUBLE_BIT): Remove. | |
198 | [HAVE_LONG_DOUBLE && HOST_I386] (LD_I387): Remove. | |
199 | (i387_extract_floating, i387_store_floating): Remove prototypes. | |
200 | (TARGET_EXTRACT_FLOATING, TARGET_STORE_FLOATING): Remove. | |
201 | (REGISTER_CONVERT_TO_VIRTUAL, REGOISTER_CONVERT_TO_RAW): Remove. | |
202 | (REGISTER_VIRTUAL_TYPE): Remove. | |
203 | * i386-tdep.c (i386_register_convert_to_virtual): New function. | |
204 | (i386_register_convert_to_raw): New function. | |
205 | * i387-tdep.c [LD_I387] (i387_extract_floating): Remove. | |
206 | (i387_store_floating): Remove. | |
207 | ||
33f91161 AC |
208 | Sat Mar 25 18:55:57 2000 Andrew Cagney <[email protected]> |
209 | ||
210 | * maint.c: Re-indent. | |
211 | ||
6f122dc9 AC |
212 | Sat Mar 25 18:51:50 2000 Andrew Cagney <[email protected]> |
213 | ||
214 | * maint.c (_initialize_maint_cmds): Remove quoted trailing space. | |
215 | ||
ddda03b2 CF |
216 | 2000-03-24 Christopher Faylor <[email protected]> |
217 | ||
218 | * config/mips/tm-wince.h: Fix typo which caused include of tm-mips.h to | |
219 | be inoperative. | |
220 | ||
8227c82d CF |
221 | 2000-03-24 Christopher Faylor <[email protected]> |
222 | ||
223 | * win32-nat.c: Back out special frame walking code. It was broken. | |
224 | (handle_exception): Correctly identify an illegal instruction. | |
225 | * config/tm-cygwin.h: Eliminate special frame handling. Just use | |
226 | normal i386 handling. | |
227 | ||
0729fd50 DB |
228 | 2000-03-24 J.T. Conklin <[email protected]> |
229 | ||
230 | * i386/tm-nbsd.h (USE_STRUCT_CONVENTION): Define. | |
231 | * i386nbsd-nat.c (i386nbsd_use_struct_convention): New function. | |
232 | (fetch_core_registers): Read fp registers. | |
233 | (i386nbsd_core_fns, _initialize_i386nbsd_nat): Added. | |
234 | ||
c7885828 JL |
235 | 2000-03-24 Jonathan Larmour <[email protected]> |
236 | ||
237 | * arm-tdep.c (thumb_skip_prologue): Take function end addr argument | |
238 | so that we can stop searching for the prologue past the function end | |
239 | (arm_skip_prologue): Call thumb_skip_prologue with function end addr | |
240 | ||
a91f7ea9 KB |
241 | 2000-03-24 Kevin Buettner <[email protected]> |
242 | ||
243 | * linux-thread.c, lin-thread.c (save_inferior_pid, | |
244 | restore_inferior_pid): Don't do compile time comparison | |
245 | of TARGET_PTR_BIT and TARGET_INT_BIT. | |
246 | ||
89c3b6d3 PDM |
247 | Thu Mar 23 13:18:26 2000 Philippe De Muyter <[email protected]> |
248 | ||
249 | * m68k-tdep.c (P_LINKL_FP, P_LINKW_FP): Macros renamed from P_LINK_L | |
250 | and P_LINK_W. | |
251 | (P_PEA_FP, P_MOVL_SP_FP): New macros. | |
252 | (P_MOVL, P_LEAL, P_MOVML): Macros renamed from P_MOV_L, P_LEA_L and | |
253 | P_MOVM_L. | |
254 | (altos_skip_prologue, isi_skip_prologue): Use P_* macros, not octal | |
255 | constants. | |
256 | (delta68_in_sigtramp): New function. | |
257 | (delta68_frame_args_address, delta68_frame_saved_pc): Ditto. | |
258 | (m68k_skip_prologue): Use P_* macros, not hex constants. | |
259 | (m68k_find_saved_regs): Do not expect a fixed sequence of register save | |
260 | instructions, but accept them in any order; use P_* macros, not octal | |
261 | or hex constants; recognize also `fmovemx to (fp + displacement)' and | |
262 | `moveml to (fp + displacement)'. | |
263 | * m68/tm-delta68.h (IN_SIGTRAMP): New macro. | |
264 | (FRAME_SAVED_PC, FRAME_ARGS_ADDRESS): Ditto. | |
0729fd50 | 265 | |
b83f3627 AC |
266 | Fri Mar 24 13:44:57 2000 Andrew Cagney <[email protected]> |
267 | ||
0729fd50 DB |
268 | * MAINTAINERS: Add Fernando Nasser to testsuite maintainers. |
269 | ||
9452d09b MS |
270 | 2000-03-23 Michael Snyder <[email protected]> |
271 | ||
213c01f7 | 272 | * solib.c (open_symbol_file_object): To sneak an int argument |
9452d09b MS |
273 | past catch_errors, instead of casting it to a pointer, simply |
274 | pass it by address. | |
275 | ||
74cc24b0 DB |
276 | 2000-03-23 Jimmy Guo <[email protected]> |
277 | ||
278 | * gdbtypes.c (rank_function): Rank all N parameters and use correct | |
279 | index into the prams[] and args[] arrays. | |
280 | ||
56382845 FN |
281 | 2000-03-23 Fernando Nasser <[email protected]> |
282 | ||
283 | From David Whedon <[email protected]> | |
284 | ||
285 | * top.c (execute_command): Checks all commands beore executing | |
286 | to see if the user needs to be warned that the command is | |
287 | deprecated, warns user if appropriate. | |
288 | (add_info), (add_info_alias), (add_com) , (add_com_alias): Changed | |
289 | return values from void to struct cmd_list_element *. | |
0729fd50 | 290 | * command.c (lookup_cmd_1): Check aliases before following link |
56382845 FN |
291 | in case user needs to be warned about a deprecated alias. |
292 | (deprecate_cmd): new exported function for command deprecation, | |
293 | sets flags and posibly a replacement string. | |
294 | (deprecated_cmd_warning): New exported funciton to warn user about | |
0729fd50 | 295 | a deprecated command. |
56382845 FN |
296 | (lookup_cmd_composition): New exported function that determines |
297 | alias, prefix_command, and cmd based on a string. This is useful | |
298 | is we want to full name of a command. | |
299 | * command.h : Added prototypes for deprecate_cmd, | |
300 | deprecated_warn_user and lookup_cmd_composition, added flags to | |
301 | the cmd_list_element structure, changed return values for | |
302 | add_com_* and add_info_* from void to cmd_list_element. | |
303 | * maint.c : (maintenance_deprecate): New function to deprecate a | |
304 | command. This exists only so that the testsuite can deprecate | |
305 | commands at runtime and check the warning behavior. | |
306 | (maintenance_undeprecate) : New function, drops deprecated flags. | |
307 | (maintenance_do_deprecate): Actually does the (un)deprecation. | |
308 | (initialize_maint_cmds): Added the above new deprecate commands. | |
309 | ||
310 | 2000-03-22 Daniel Berlin <[email protected]> | |
311 | * command.c (apropos_cmd_helper): New function, meat of the | |
312 | apropos command. | |
313 | (apropos_command): New apropos command to search command | |
314 | names/documentation for regular expressions. | |
315 | (_initialize_command): Add the apropos command. | |
316 | ||
0f4db1a1 MS |
317 | 2000-03-23 Michael Snyder <[email protected]> |
318 | ||
319 | * sol-thread.c (ps_pglobal_lookup): Change argument type from | |
320 | paddr_t to psaddr_t. This mistake appears to date from an | |
321 | erroneous man page in Solaris 2.5 -- the correct type from the | |
322 | system headers has always been psaddr_t. | |
213c01f7 MS |
323 | (ps_pdread, ps_pdwrite, ps_ptread, ps_ptwrite): Ditto. |
324 | (rw_common): Ditto. | |
0f4db1a1 | 325 | |
64a5b29c KB |
326 | 2000-03-22 Kevin Buettner <[email protected]> |
327 | ||
328 | * ia64-linux-nat.c: Fix copyright. | |
329 | (fill_gregset): Minor formatting fix. | |
330 | * ia64-tdep.c (template_encoding_table, fetch_instruction, | |
331 | examine_prologue): Clean up some compiler warnings. | |
332 | (is_float_or_hfa_type_recurse, is_float_or_hfa_type, find_func_descr, | |
333 | find_global_pointer, find_extant_func_descr): New functions. | |
334 | (ia64_use_struct_convention, ia64_extract_return_value, | |
335 | ia64_push_arguments): Handle HFAs. | |
336 | (ia64_push_arguments): Find (or build) a function descriptor | |
337 | when given a function address. | |
338 | (ia64_push_return_address): Moved code for finding the | |
339 | global pointer into its own function, find_global_pointer (). | |
340 | ||
7e5cd2de EZ |
341 | 2000-03-22 Elena Zannoni <[email protected]> |
342 | ||
343 | * event-loop.c (handle_file_event): Run through indent. | |
344 | ||
44f45770 EZ |
345 | 2000-03-22 Elena Zannoni <[email protected]> |
346 | ||
347 | From Philippe De Muyter <[email protected]> | |
348 | ||
349 | * event-loop.c (sys/types.h): File now included unconditionally. | |
350 | (use_poll): New variable.. | |
351 | (gdb_notifier): poll- and select-versions merged. | |
352 | (add_file_handler): If HAVE_POLL, check whether poll is usable, | |
353 | and reset `use_poll' if not. | |
354 | (create_file_handler): Select poll- or select-version according to | |
355 | `use_poll'. | |
356 | (delete_file_handler, handle_file_event): Likewise. | |
357 | (gdb_wait_for_event, poll_timers): Likewise. | |
358 | ||
593de6a6 PS |
359 | 2000-03-22 Peter Schauer <[email protected]> |
360 | ||
361 | * printcmd.c (print_scalar_formatted): Truncate addresses to the | |
362 | size of a target pointer before passing them to print_address. | |
363 | ||
1a309862 MK |
364 | 2000-03-22 Mark Kettenis <[email protected]> |
365 | ||
366 | * config/i386/tm-i386aix.h (I386_AIX_TARGET): Remove. | |
367 | * config/i386/tm-linux.h (LOW_RETURN_REGNUM, HIGH_RETURN_REGNUM): | |
368 | Remove | |
369 | * i386-tdep.c (LOW_RETURN_REGNUM, HIGH_RETURN_REGNUM): New defines. | |
370 | (i386_extract_return_value): Rewritten. Correctly support all | |
371 | floating-point types and large integer types on targets that use | |
372 | the standard i386 GDB register layout and return floating-point | |
373 | values in the FPU. | |
374 | ||
6a08e74c AC |
375 | Wed Mar 22 15:09:34 2000 Andrew Cagney <[email protected]> |
376 | ||
377 | * configure.in (CONFIG_INITS): Do not append remote-nrom.c | |
378 | ||
0729fd50 DB |
379 | 2000-03-21 J.T. Conklin <[email protected]> |
380 | ||
381 | * i386/nbsd.mh (NATDEPFILES): Change i386b-nat.o to i386nbsd-nat.o. | |
382 | * i386nbsd-nat.c: New file. | |
383 | ||
384 | * i386/tm-nbsd.h (NUM_REGS): Removed. | |
385 | (HAVE_I387_REGS): Defined. | |
386 | * i386/nm-nbsd.h (FLOAT_INFO): Removed. | |
387 | ||
388 | * tm-nbsd.h (IN_SOLIB_CALL_TRAMPOLINE): Define if not | |
389 | SVR4_SHARED_LIBS. | |
5f04ac3d | 390 | |
f09cffe3 AC |
391 | Wed Mar 22 11:18:59 2000 Andrew Cagney <[email protected]> |
392 | ||
393 | * MAINTAINERS: Add Jim Blandy to breakpoint maintainers. David | |
394 | taylor is the Solaris/SPARC maintainer. Add Jonathan Larmour to | |
395 | the write after approval list. | |
396 | ||
62557bbc KB |
397 | 2000-03-21 Kevin Buettner <[email protected]> |
398 | ||
399 | * symtab.h (MAX_SECTIONS, struct section_addr_info, | |
400 | symbol_file_add): Move declarations from here... | |
401 | * symfile.h: ...to here. | |
402 | ||
403 | * solib.c (symbol_add_stub): Make symbol_file_add () aware of | |
404 | all section addresses, not just .text. | |
405 | * symfile.h, symfile.c (free_section_addr_info, | |
406 | build_section_addr_info_from_section_table): New functions. | |
407 | ||
408 | * symfile.h (MAX_SECTIONS): Increase value to 40. | |
409 | * symfile.c (syms_from_objfile): Add bounds check prior to | |
410 | accessing ``other'' array in a section_addr_info_struct. | |
411 | Remove unused variable section_offsets. | |
412 | (add_symbol_file_command): Remove unused variable text_addr. | |
413 | ||
99e5c1c8 MS |
414 | 2000-03-21 Eli Zaretskii <[email protected]> |
415 | ||
416 | * breakpoint.c (bpstat_stop_status): Don't stop if a read | |
417 | watchpoint appears to break, but the watched value changed. | |
418 | ||
333a782f JB |
419 | 2000-03-21 Jim Blandy <[email protected]> |
420 | ||
421 | * gdbarch.sh: Emit a definition and declaration for gdbarch_free, | |
422 | a companion to gdbarch_alloc, which allows a gdbarch init function | |
423 | to free partially-built gdbarch structures. | |
424 | * gdbarch.c, gdbarch.h: Regenerated. | |
425 | ||
eafb8301 KB |
426 | 2000-03-20 Kevin Buettner <[email protected]> |
427 | ||
428 | * configure.host, configure.tgt (ia64-*-linux*): New entry. | |
429 | ||
430 | * gdbserver/low-linux.c (u_offsets, ia64_register_u_addr, | |
431 | initialize_arch): Define for IA-64. | |
432 | (initialize_arch): Add declaration. | |
433 | ||
2e70b7b9 MS |
434 | 2000-03-20 Eli Zaretskii <[email protected]> |
435 | ||
436 | * breakpoint.c (insert_breakpoints, remove_breakpoint) | |
437 | (bpstat_stop_status, can_use_hardware_watchpoint): Don't insert, | |
438 | remove, or check status of hardware watchpoints for entire structs | |
439 | and arrays unless the user explicitly asked to watch that struct | |
0729fd50 | 440 | or array. |
2e70b7b9 MS |
441 | (insert_breakpoints): Try to insert watchpoints for all the values |
442 | on the value chain, even if some of them fail to insert. | |
443 | ||
444 | * values.c (value_primitive_field): Set the offset in struct value | |
445 | we return when the field is a packed bitfield. | |
446 | ||
9d1f7ab2 MS |
447 | 2000-03-20 Michael Snyder <[email protected]> |
448 | ||
213c01f7 | 449 | * remote.c (remote_threads_extra_info): New function. |
9d1f7ab2 | 450 | Implement the extra thread info query for "info threads". |
213c01f7 MS |
451 | (remote_threads_info): Clean up a bit. |
452 | (use_threadinfo_query, use_threadextra_query): New variables. | |
0729fd50 | 453 | Control whether GDB will use the new or old protocol for |
9d1f7ab2 | 454 | thread info queries. |
213c01f7 MS |
455 | (remote_open_1): Initialize new variables. |
456 | (remote_async_open_1): Ditto. | |
457 | (remote_cisco_open): Ditto. | |
9d1f7ab2 | 458 | |
16461d7d KB |
459 | 2000-03-20 Kevin Buettner <[email protected]> |
460 | ||
461 | * ia64-linux-nat.c, ia64-tdep.c, config/ia64/linux.mh, | |
462 | config/ia64/linux.mt, config/ia64/nm-linux.h, config/ia64/tm-ia64.h, | |
463 | config/ia64/tm-linux.h, config/ia64/xm-linux.h: New files. | |
464 | ||
ba8966d6 KB |
465 | 2000-03-20 Kevin Buettner <[email protected]> |
466 | ||
467 | * utils.c (floatformat_from_doublest): Don't assume that a long | |
468 | will be exactly 32 bits in length. Also... make sure space | |
469 | that we're writing the float to is completely initialized to | |
470 | zeroes, even when the number of bits in the float is not | |
471 | evenly divisible by FLOATFORMAT_CHAR_BIT. | |
472 | ||
e7ee86a9 JB |
473 | 2000-03-20 Jim Blandy <[email protected]> |
474 | ||
475 | * i386-linux-nat.c: No need to #include "frame.h" any more. | |
476 | (LINUX_SIGTRAMP_INSN0, LINUX_SIGTRAMP_OFFSET0, | |
477 | LINUX_SIGTRAMP_INSN1, LINUX_SIGTRAMP_OFFSET1, | |
478 | LINUX_SIGTRAMP_INSN2, LINUX_SIGTRAMP_OFFSET2, linux_sigtramp_code, | |
479 | LINUX_SIGTRAMP_LEN, i386_linux_sigtramp_start, | |
480 | LINUX_RT_SIGTRAMP_INSN0, LINUX_RT_SIGTRAMP_OFFSET0, | |
481 | LINUX_RT_SIGTRAMP_INSN1, LINUX_RT_SIGTRAMP_OFFSET1, | |
482 | linux_rt_sigtramp_code, LINUX_RT_SIGTRAMP_LEN, | |
483 | i386_linux_rt_sigtramp_start, i386_linux_in_sigtramp, | |
484 | i386_linux_sigcontext_addr, LINUX_SIGCONTEXT_PC_OFFSET, | |
485 | i386_linux_sigtramp_saved_pc, LINUX_SIGCONTEXT_SP_OFFSET, | |
486 | i386_linux_sigtramp_saved_sp): Deleted. Folks rightly pointed | |
487 | out that these are target-dependent, and useful in non-native | |
488 | configurations. Moved to... | |
489 | * i386-linux-tdep.c: ... Here, a new file. | |
490 | * Makefile.in (ALLDEPFILES): Add i386-linux-tdep.c. | |
491 | (i386-linux-tdep.o): New rule. | |
492 | (i386-linux-nat.o): We no longer depend on frame.h. | |
493 | * config/i386/linux.mt (TDEPFILES): Add i386-linux-tdep.o. | |
494 | ||
58a2c44a EZ |
495 | 2000-03-04 Eli Zaretskii <[email protected]> |
496 | ||
497 | * event-loop.c (top-level) [NO_FD_SET]: Deprecate this branch. | |
498 | Print an error at compile time if we are to use select, but FD_SET | |
499 | is not available. | |
500 | (SELECT_MASK, NBBY, FD_SETSIZE, NFDBITS, MASK_SIZE): Define only | |
501 | if HAVE_POLL is not defined and NO_FD_SET *is* defined. | |
502 | (create_file_handler) [!HAVE_POLL]: Use FD_SET and FD_CLR. | |
503 | (delete_file_handler) [!HAVE_POLL]: Use FD_CLR and FD_ISSET. | |
504 | (gdb_wait_for_event) [!HAVE_POLL]: Copy fd_set sets directly | |
505 | instead of using memcpy and memset. Use FD_ISSET. | |
506 | ||
507 | * config/i386/xm-go32.h (fd_mask): Remove typedef. | |
508 | ||
acd46a93 AC |
509 | Mon Mar 20 19:58:45 2000 Andrew Cagney <[email protected]> |
510 | ||
511 | * command.c (_initialize_command): Document requirements for ``!'' | |
512 | command. | |
513 | ||
b71896da AC |
514 | Mon Mar 20 18:12:46 2000 Andrew Cagney <[email protected]> |
515 | ||
516 | From Fri 10 Mar 2000 Robert | |
517 | <[email protected]>: | |
518 | * sh-tdep.c (sh_processor_type_table): Add entry for sh2. | |
519 | ||
4397a6ab AC |
520 | Mon Mar 20 17:33:32 2000 Andrew Cagney <[email protected]> |
521 | ||
522 | From Thu Mar 16 16:49:27 EST 2000 John David Anglin | |
523 | <[email protected]>: | |
524 | * configure.in (CONFIG_INITS): Don't include hpux-thread.c. Stops | |
525 | _initialize_hpux_thread being called twice. | |
526 | * configure: Regenerated. | |
527 | ||
c5201926 EZ |
528 | 2000-03-19 Eli Zaretskii <[email protected]> |
529 | ||
530 | * event-top.c (_initialize_event_loop): If instream is not | |
531 | connected to a terminal device, turn editing off. | |
532 | ||
ded59a1e EZ |
533 | 2000-03-19 Eli Zaretskii <[email protected]> |
534 | ||
535 | Support for building GDB with DJGPP, and running the test suite on | |
536 | it: | |
537 | * config/djgpp/djconfig.sh: New file. | |
538 | * config/djgpp/config.sed: New file. | |
539 | * config/djgpp/README: New file. | |
540 | * config/djgpp/fnchange.lst: New file. | |
541 | * config/djgpp/djcheck.sh: New file. | |
542 | ||
615b480f EZ |
543 | 2000-03-19 Eli Zaretskii <[email protected]> |
544 | ||
545 | * ser-go32.c (ports): Make the initializers complete, to pacify | |
546 | GCC 2.9X. | |
547 | ||
1cc26dd0 JB |
548 | 2000-03-17 Jim Blandy <[email protected]> |
549 | ||
9f81f4aa JB |
550 | * i386v-nat.c (i386_insert_nonaligned_watchpoint): Use a |
551 | two-dimensional array, instead of faking it with explicit index | |
552 | arithmetic. | |
553 | ||
554 | * linux-thread.c (linuxthreads_attach, linuxthreads_detach, | |
555 | linuxthreads_create_inferior): Fix typo in variable name: it's | |
556 | linuxthreads_exit_status, not linux_exit_status. | |
557 | ||
558 | * gdb_wait.h (WSETSTOP): Pass the appropriate number of arguments | |
559 | to W_STOPCODE. | |
560 | ||
1cc26dd0 JB |
561 | * solib.c (solib_add): Delete debugging code. |
562 | ||
ca9c33a5 MS |
563 | 2000-03-17 Mark Kettenis <[email protected]> |
564 | ||
565 | * gdb_wait.h: add definitions of WSETSTOP and WSETEXIT for Linux. | |
566 | * linux-thread.c: Use WSETSTOP instead of W_STOPCODE. | |
567 | ||
ccdaf797 PDM |
568 | Fri Mar 17 11:06:59 2000 Philippe De Muyter <[email protected]> |
569 | ||
570 | * language.c (set_lang_str): Do not call `free' for a null pointer. | |
571 | (set_type_str, set_range_str): Ditto. | |
572 | ||
7f869e41 JB |
573 | 2000-03-16 Jim Blandy <[email protected]> |
574 | ||
17f9defb JB |
575 | * i386-linux-nat.c (i386_linux_saved_pc_after_call): Lost in the |
576 | merge; reinstated. | |
577 | ||
7f869e41 JB |
578 | * solib.c (current_sos): Be more careful about freeing the new |
579 | so_list node if an error occurs. | |
580 | ||
11708b95 JB |
581 | * i386-tdep.c (LINUX_SIGTRAMP_INSN0, LINUX_SIGTRAMP_OFFSET0, |
582 | LINUX_SIGTRAMP_INSN1, LINUX_SIGTRAMP_OFFSET1, | |
583 | LINUX_SIGTRAMP_INSN2, LINUX_SIGTRAMP_OFFSET2, linux_sigtramp_code, | |
584 | LINUX_SIGTRAMP_LEN, i386_linux_sigtramp_start, | |
585 | LINUX_RT_SIGTRAMP_INSN0, LINUX_RT_SIGTRAMP_OFFSET0, | |
586 | LINUX_RT_SIGTRAMP_INSN1, LINUX_RT_SIGTRAMP_OFFSET1, | |
587 | linux_rt_sigtramp_code, LINUX_RT_SIGTRAMP_LEN, | |
588 | i386_linux_rt_sigtramp_start, i386_linux_in_sigtramp, | |
589 | i386_linux_sigcontext_addr, LINUX_SIGCONTEXT_PC_OFFSET, | |
590 | i386_linux_sigtramp_saved_pc, LINUX_SIGCONTEXT_SP_OFFSET, | |
17f9defb JB |
591 | i386_linux_sigtramp_saved_sp): Deleted. These all implement |
592 | Linux-specific signal trampoline detection, and should be moved | |
593 | to... | |
11708b95 JB |
594 | * i386-linux-nat.c: ... here. |
595 | * config/i386/tm-linux.h (I386_LINUX_SIGTRAMP): No need to define | |
596 | this any more, since we're not enabling OS-specific code in a | |
597 | OS-independent file. | |
0729fd50 | 598 | |
3a95698a EZ |
599 | 2000-03-16 Eli Zaretskii <[email protected]> |
600 | ||
2c33cc30 | 601 | * Makefile.in (go32-nat.o): Add prerequisites. |
3a95698a EZ |
602 | (ALLDEPFILES): Add go32-nat.c. |
603 | ||
0a83117a MS |
604 | 2000-03-15 Michael Snyder <[email protected]> |
605 | ||
606 | From "Peter.Schauer" <[email protected]> | |
607 | * symfile.c (reread_symbols): Clear msymbol hash table. | |
608 | ||
07cd4b97 JB |
609 | 2000-03-15 Jim Blandy <[email protected]> |
610 | ||
611 | Deal with the inferior unloading shared objects. | |
612 | * solib.c (current_sos): New function, replacing find_solib. | |
613 | (find_solib): Deleted. | |
614 | (free_so): New function. | |
615 | (clear_solib): Call free_so, instead of writing it out. | |
616 | (solib_add): Rewritten: compare the inferior's current list of | |
617 | shared objects with GDB's list, and do the required loads and | |
618 | unloads. | |
619 | (info_sharedlibrary_command, solib_address): Don't use find_solib | |
620 | to walk the list of shared libraries: call solib_add, and then | |
621 | walk the list at so_list_head normally. | |
622 | * objfiles.c (free_objfile): Don't call CLEAR_SOLIB, and don't | |
623 | detach the core target. These tasks are taken care of elsewhere. | |
624 | * target.c (remove_target_sections): New function. | |
625 | * target.h (remove_target_sections): New declaration. | |
626 | ||
627 | * solib.c (symbol_add_stub): Check whether we've already created | |
628 | an objfile for this shared object first, before doing all that | |
629 | work to compute section addresses, etc. | |
630 | ||
631 | * objfiles.c (unlink_objfile): Report an internal error if objfile | |
632 | doesn't occur in the object_files list. | |
633 | ||
634 | * solib.c (special_symbol_handling): Delete argument; it's not | |
635 | used. | |
0729fd50 | 636 | |
07cd4b97 JB |
637 | Changes from Peter Schauer <[email protected]>: |
638 | ||
639 | * solib.c (SOLIB_EXTRACT_ADDRESS): New macro to extract addresses | |
640 | from solib structures. Use it throughout solib.c, get rid of all | |
641 | CORE_ADDR casts. | |
642 | (struct so_list): Change type of lmaddr to CORE_ADDR. | |
643 | (first_link_map_member): Change return value type to CORE_ADDR, | |
644 | update callers. | |
645 | (solib_add_common_symbols): Change parameter type to CORE_ADDR, | |
646 | update callers. | |
647 | (open_symbol_file_object, find_solib): Change type of lm variable | |
648 | to CORE_ADDR. | |
649 | ||
afbae4e3 EZ |
650 | 2000-03-15 Eli Zaretskii <[email protected]> |
651 | ||
652 | * ser-go32.c (dos_noop, dos_raw, dos_noflush_set_tty_state) | |
653 | (dos_print_tty_state, dos_info, _initialize_ser_dos): Convert | |
654 | to ISO C. Use ATTRIBUTE_UNUSED to avoid compiler warnings. | |
655 | (dos_info): Avoid compiler warning when printing a ptrdiff_t. | |
656 | ||
657 | * ser-go32.c (dos_get_tty_state): Fail if the (fake) handle was | |
658 | not opened by dos_open, but let the 3 standard handles go through | |
659 | unharmed. | |
660 | ||
751a959b EZ |
661 | 2000-03-14 Elena Zannoni <[email protected]> |
662 | ||
663 | * eval.c (evaluate_subexp_with_coercion): Add call to | |
664 | check_typedef, to handle typedeffed vars correctly. | |
665 | ||
1a0559af AC |
666 | Mon Mar 13 21:21:41 2000 Andrew Cagney <[email protected]> |
667 | ||
668 | * defs.h (STREQ, STRCMP, STREQN): Document that these macros are | |
669 | somewhat redundant. | |
670 | (QUIT): Note that this can probably be replaced by a function. | |
671 | ||
73a93a32 JI |
672 | 2000-03-13 James Ingham <[email protected]> |
673 | ||
0729fd50 | 674 | Add support for a variable object that tries to evaluate itself in |
73a93a32 | 675 | the currently selected frame, rather than in a fixed frame. |
0729fd50 | 676 | |
73a93a32 JI |
677 | * wrapper.c,h (gdb_parse_exp_1): Added a wrapper for |
678 | gdb_parse_exp_1. | |
0729fd50 | 679 | * varobj.h: Added USE_CURRENT_FRAME to varobj_type & changed def'n |
73a93a32 JI |
680 | of varobj_create. |
681 | * varobj.c (varobj_list): Return type indicates whether the | |
682 | variable's type has changed (for current frame variables). | |
683 | (varobj_update): Handle the case where the variable's type has | |
684 | changed. | |
0729fd50 | 685 | (delete_variable_1): Allow for deletion of variables that have not |
73a93a32 JI |
686 | been installed yet. |
687 | (new_root_variable): Initialize use_selected_frame variable. | |
0729fd50 | 688 | (value_of_root): This is where most of the work to handle "current |
73a93a32 JI |
689 | frame" variables was added. Most of the complexity involves |
690 | handling the case where the type of the variable has changed. | |
691 | (varobj_create): Add a "type" argument, to tell if the | |
692 | variable is one of these "current frame" variables. Also protect | |
693 | call to parse_exp_1 from long jumping. | |
0729fd50 | 694 | |
0fff5247 EZ |
695 | 2000-03-13 Eli Zaretskii <[email protected]> |
696 | ||
697 | * go32-nat.c (struct env387): Remove declaration. | |
698 | (print_387_status, i386_go32_float_info): Remove redundant | |
699 | functions. | |
700 | (regno_mapping, sig_map, excepn_map): Add braces around inner | |
701 | initializers. | |
702 | (many functions): Use ATTRIBUTE_UNUSED to shut up the compiler; | |
703 | fix code which mixed signed with unsigned. | |
704 | (go32_resume): Use TARGET_SIGNAL_LAST instead of -1. | |
705 | (go32_wait): Initialize INT3_addr. | |
706 | (go32_fetch_registers): Extend all FP registers that are shorter | |
707 | than 4 bytes to 32 bits. Support 32 standard FP registers defined | |
708 | on config/i386/tm-i386.h. | |
709 | (store_register): Support 32 FP registers. | |
710 | (go32_create_inferior): Don't crash if handed a NULL pointer | |
711 | instead of exec file name. | |
712 | (ignore): Remove unused function. | |
713 | (go32_insert_hw_breakpoint): Remove unused variables. | |
714 | (init_go32_ops): Set value of processing_gcc_compilation to 2. | |
715 | ||
db577aea AC |
716 | Mon Mar 13 18:54:42 2000 Andrew Cagney <[email protected]> |
717 | ||
718 | From 2000-03-10 Daniel Berlin <[email protected]> Fix C++ | |
719 | overloading, add support for seeing through references: | |
720 | * valops.c (find_overload_match): Handle STABS overloading for | |
721 | C++. | |
722 | (find_overload_match): Look in right place for function arguments | |
723 | in the debug info. | |
724 | (find_overload_match): Rather than giving up when we have >1 | |
725 | perfect match, just choose one, especially since the | |
726 | recommendation GDB gives ("disambiguate it by specifying function | |
727 | signature"), is basically impossible. | |
728 | (check_field_in): STREQ->strcmp_iw | |
729 | (search_struct_field): STREQ->strcmp_iw | |
730 | (find_method_list): STREQ->strcmp_iw | |
731 | * gdbtypes.c (rank_one_type): Add ability to see through | |
732 | references. | |
733 | (rank_one_type): strcmp->strcmp_iw, because the whitespace could | |
734 | be different. | |
735 | (rank_function): Rank function properly (was doing it wrong | |
736 | before, comparing the wrong parts of the arrays) | |
737 | (rank_one_type): Change #if 0 to #ifdef DEBUG_OLOAD. | |
738 | * gdbtypes.h: Add REFERENCE_CONVERSION_BADNESS for "badness" | |
739 | associated with converting a non-reference to a reference. | |
740 | ||
741 | * gdbtypes.c (rank_one_type): Add comment on how to eliminate the | |
742 | #ifdef DEBUG_OLOAD. | |
0729fd50 | 743 | |
f75c77fc MK |
744 | 2000-03-11 Mark Kettenis <[email protected]> |
745 | ||
746 | * gnu-nat.c: Fix the formatting where indent misinterpreted `&' as | |
747 | a binary operator. | |
748 | (gnu_attach): Change error message for missing | |
749 | argument to be identical to the corresponding message in | |
750 | `inftarg.c'. This makes the testsuite happy. | |
751 | ||
fb557744 MK |
752 | 2000-03-11 Mark Kettenis <[email protected]> |
753 | ||
754 | * i386gnu-nat.c (gnu_store_registers): Make sure the T bit in the | |
755 | %eflags isn't modified. This fixes a bug where every call to a | |
756 | function in the program beyond the first call would fail. | |
757 | ||
36c2118f AC |
758 | Fri Mar 10 11:44:55 2000 Andrew Cagney <[email protected]> |
759 | ||
760 | * MAINTAINERS: Devolve responsibility for domain maintenance. | |
761 | ||
a79dea61 EZ |
762 | 2000-03-06 Elena Zannoni <[email protected]> |
763 | ||
764 | * minsyms.c (prim_record_minimal_symbol_and_info): Add comment. | |
765 | ||
f1a6b754 SB |
766 | 2000-02-25 Scott Bambrough <[email protected]> |
767 | ||
768 | * gdb.base/long_long.exp: Correct test suite failure when printing | |
769 | a long long value as a double on ARM platforms. | |
770 | ||
513d6eba AC |
771 | Thu Mar 9 14:21:07 2000 Andrew Cagney <[email protected]> |
772 | ||
773 | * MAINTAINERS (Core): Anthony Green is the Java - including | |
7b83ea04 AC |
774 | testsuite - maintainer. Reformat testsuite and language support |
775 | sections | |
513d6eba | 776 | |
4cc24188 MK |
777 | 2000-03-08 Mark Kettenis <[email protected]> |
778 | ||
779 | * i386-tdep.c (i386_linux_saved_pc_after_call): New function. | |
780 | * config/i386/tm-linux.h (SAVED_PC_AFTER_CALL): Define to call | |
781 | i386_linux_saved_pc_after_call. | |
782 | ||
9227b5eb JB |
783 | 2000-03-06 Jim Blandy <[email protected]> |
784 | ||
785 | From Tom Tromey <[email protected]> and Keith Seitz <?>: | |
786 | ||
787 | * minsyms.c: #include <ctype.h>, for msymbol_hash_iw. | |
788 | (compact_minimal_symbols): Added `objfile' argument. | |
789 | Put symbols in the objfile's hash table. | |
790 | (install_minimal_symbols): Put symbols in the objfile's demangled | |
791 | hash table. | |
792 | (lookup_minimal_symbol): Use hash table to find symbol in | |
793 | objfile. | |
794 | (msymbol_hash_iw, msymbol_hash, add_minsym_to_hash_table): New | |
795 | functions. | |
796 | (prim_record_minimal_symbol_and_info): Initialize the | |
797 | hash link fields of the new minimal symbol. | |
798 | * symtab.h (struct minimal_symbol): New fields `hash_next', | |
799 | `demangled_hash_next'. | |
800 | (msymbol_hash_iw, msymbol_hash, add_minsym_to_hash_table): Declare. | |
801 | * objfiles.h (MINIMAL_SYMBOL_HASH_SIZE): New define. | |
802 | (struct objfile): New fields `msymbol_hash', | |
803 | `msymbol_demangled_hash'. | |
804 | ||
ef7904ee JB |
805 | 2000-03-06 Jim Blandy <[email protected]> |
806 | ||
807 | * solib.c (first_link_map_member): Doc fix. | |
808 | ||
2f16bb32 EZ |
809 | 2000-03-06 Elena Zannoni <[email protected]> |
810 | ||
7b83ea04 | 811 | From Eli Zaretskii <[email protected]>: |
2f16bb32 EZ |
812 | |
813 | * event-loop.c (poll_timers): Don't compare delta.tv_sec with | |
814 | zero, since time_t might be unsigned. | |
815 | ||
b948cda9 MK |
816 | 2000-03-06 Mark Kettenis <[email protected]> |
817 | ||
818 | * i386-linux-nat.c (supply_fpregset): Mask off the reserved bits | |
819 | in *FPREGSETP. | |
820 | (convert_to_fpregset): Don't touch the reserved bits in *FPREGSETP. | |
821 | ||
9eaaac16 MK |
822 | 2000-03-05 Mark Kettenis <[email protected]> |
823 | ||
824 | Allow GDB to run on Linux 2.0 again. | |
825 | * config.in: Add HAVE_PTRACE_GETREGS. | |
826 | * configure.in: Check if <sys/ptrace.h> defines PTRACE_GETREGS. | |
827 | * configure: Regenerated. | |
828 | * config/i386/nm-linux.h (CANNOT_FETCH_REGISTER, | |
829 | CANNOT_STORE_REGISTER): New defines. | |
830 | * i386-linux-nat.c (have_ptrace_getregs): New variable. | |
831 | (PTRACE_XFER_TYPE, CANNOT_FETCH_REGISTER, fetch_register, | |
832 | old_fetch_inferior_registers, CANNOT_STORE_REGISTER, | |
833 | store_register, old_store_inferior_registers): Copied over from | |
834 | `inptrace.c' as a temporary measure. | |
835 | (fetch_regs, store_regs, fetch_fpregs, store_fpregs): | |
836 | Conditionalize on HAVE_PTRACE_GETREGS. Define stubs if | |
837 | HAVE_PTRACE_GETREGS isn't defined. | |
838 | (fetch_regs): Reset `have_ptrace_getregs' if ptrace call fails | |
839 | with EIO. | |
840 | (fetch_inferior_registers, store_inferior_registers): Fall back on | |
841 | the method use in `infptrace.c' (by calling | |
842 | old_fetch_inferior_registers and old_store_inferior_registers) if | |
843 | `have_ptrace_getregs' isn't set. | |
844 | ||
04cd15b6 MK |
845 | 2000-03-05 Mark Kettenis <[email protected]> |
846 | ||
847 | * i386-linux-nat.c: Use elf_gregset_t and elf_fpregset_t instead | |
848 | of gregset_t and fpregset_t. Those are the only names that are | |
849 | guaranteed to specify the right types for all supported Linux | |
850 | systems out there. | |
851 | Various doc fixes and gratitious local variable renames, all in an | |
852 | attempt to stress similarities between the code and unify the | |
853 | terminology used. Use ISO-C all over. | |
854 | (regmap): Remove trailing comma. | |
855 | (FPREG_ADDR): Renamed from FPREGSET_T_FPREG_ADDR. | |
856 | (convert_to_gregset): Make static. Remove GDB_REGS argument. It | |
857 | is unnecessary and wasn't used anyway. All callers changed. | |
858 | (convert_to_fpregset, convert_to_xfpregset): Likewise. | |
859 | (fetch_regs, store_regs): Remove unused variable `regno'. | |
860 | (fill_fpregs): If REGNO is not -1, only update the specified | |
861 | register. | |
862 | (fetch_core_registers): Renamed from | |
863 | i386_linux_fetch_core_registers. There is no need for a unique | |
864 | name since the function is static anyway. | |
865 | (linux_elf_core_fns): Renamed from i386_linux_nat_core_functions | |
866 | since it is more descriptive. | |
867 | ||
9ec7faef AC |
868 | Sun Mar 5 19:40:27 2000 Andrew Cagney <[email protected]> |
869 | ||
870 | * MAINTAINERS (readline/): Expand to include host maintainers. | |
871 | ||
45a816d9 MK |
872 | 2000-03-04 Mark Kettenis <[email protected]> |
873 | ||
874 | Fix support for Linux/i386 signal trampolines. The old approach | |
875 | didn't work for Linux 2.2 and beyond, and didn't work with recent | |
876 | versions of the GNU C library. | |
877 | * i386-tdep.c (LINUX_RT_SIGTRAMP_INSN0, LINUX_RT_SIGTRAMP_OFFSET0, | |
878 | LINUX_RT_SIGTRAMP_INSN1, LINUX_RT_SIGTRAMP_OFFSET1): New defines. | |
879 | (linux_rt_sigtramp_code): New variable. | |
880 | (LINUX_RT_SIGTRAMP_LEN): New define. | |
881 | (i386_linux_rt_sigtramp_start): New function. Detect start of | |
882 | signal trampolines for RT signals. | |
883 | (i386_linux_sigtramp): Removed. | |
884 | (i386_linux_in_sigtramp): New function. | |
885 | (i386_linux_sigcontext_addr): New function. Recognize the names | |
886 | of the signal tranmpolines used by recent versions of the GNU C | |
887 | library, and add support for RT signals. | |
7b83ea04 | 888 | (LINUX_SIGCONTEXT_PC_OFFSET, LINUX_SIGCONTEXT_SP_OFFSET): New |
45a816d9 MK |
889 | defines. Moved here from config/i386/tm-linux.h. |
890 | (i386_linux_sigtramp_saved_pc, i386_linux_sigtramp_saved_sp): | |
891 | Reimplement in terms of i386_linux_sigcontext_addr. | |
892 | * config/i386/tm-linux.h (LINUX_SIGCONTEXT_SIZE): Removed. | |
7b83ea04 AC |
893 | (LINUX_SIGCONTEXT_PC_OFFSET, LINUX_SIGCONTEXT_SP_OFFSET): |
894 | Moved to i386-tdep.c. | |
45a816d9 MK |
895 | (IN_SIGTRAMP): Redefine to call i386_linux_in_sigtramp. |
896 | ||
109213fc | 897 | Sat Mar 4 19:38:11 2000 Andrew Cagney <[email protected]> |
b70bc471 | 898 | |
109213fc | 899 | By: Sat Mar 4 04:08:58 2000 Alexandre Oliva <[email protected]> |
b70bc471 AO |
900 | * Makefile.in (all-gdbtk): Fix $srcdir to ${srcdir}. |
901 | ||
7158fd7f AC |
902 | Sat Mar 4 17:23:06 2000 Andrew Cagney <[email protected]> |
903 | ||
904 | * MAINTAINERS: Frank Ch. Eigler and Andrew Cagney co-ordinate the | |
7b83ea04 | 905 | sim directory. |
7158fd7f | 906 | |
e7411eaa AC |
907 | Sat Mar 4 16:19:31 2000 Andrew Cagney <[email protected]> |
908 | ||
909 | * MAINTAINERS: Add Michael Snyder and Peter Schauer to list of | |
7b83ea04 | 910 | ``Blanket Write Privs'' maintainers. |
e7411eaa | 911 | |
392746e5 AC |
912 | Sat Mar 4 15:58:40 2000 Andrew Cagney <[email protected]> |
913 | ||
9ec7faef | 914 | From Sun 20 Feb 2000 Robert Lipe <[email protected]>: |
392746e5 | 915 | * language.c (longest_local_hex_string_custom): Don't compile |
7b83ea04 | 916 | 'long long' section if host doesn't have 'long long'. |
392746e5 | 917 | |
7acb79c8 AC |
918 | Sat Mar 4 15:45:38 2000 Andrew Cagney <[email protected]> |
919 | ||
920 | * language.c (longest_raw_hex_string): Comment out. Appears | |
7b83ea04 | 921 | unused. |
7acb79c8 | 922 | |
082faf24 AC |
923 | Sat Mar 4 13:02:09 2000 Andrew Cagney <[email protected]> |
924 | ||
925 | * utils.c (mcalloc), defs.h (mcalloc): Keep consistent with | |
7b83ea04 | 926 | "mmalloc.h" which means using PTRs. |
082faf24 AC |
927 | (init_malloc, msavestring, mstrsave): Convert to PTR free ISO-C. |
928 | ||
a9ac8f51 AC |
929 | Sat Mar 4 11:49:21 2000 Andrew Cagney <[email protected]> |
930 | ||
931 | * defs.h (store_address, store_unsigned_integer, store_address): | |
7b83ea04 | 932 | Replace PTR with void* in delcaration. |
a9ac8f51 | 933 | * findvar.c (extract_signed_integer, extract_unsigned_integer, |
7b83ea04 AC |
934 | extract_long_unsigned_integer, extract_address, |
935 | store_signed_integer, store_unsigned_integer, store_address): | |
936 | Convert definition to ISO-C. Replace PTR with void*. | |
a9ac8f51 | 937 | |
e4005526 AC |
938 | Sat Mar 4 10:57:25 2000 Andrew Cagney <[email protected]> |
939 | ||
940 | * defs.h (make_cleanup_func): Document as deprecated. | |
941 | (make_cleanup_ftype): New typedef. Make signature consistent with | |
7b83ea04 AC |
942 | other function typedefs. Document as not be used out side of |
943 | make_cleanup code. Use in make_cleanup declarations. | |
e54a9244 | 944 | (null_cleanup): Replace PTR with void*. |
0729fd50 | 945 | |
e4005526 | 946 | * utils.c (make_cleanup, make_final_cleanup, make_run_cleanup, |
7b83ea04 AC |
947 | make_exec_cleanup, make_exec_error_cleanup, make_my_cleanup, |
948 | null_cleanup): Change K&R definition to ISO-C using void* and | |
949 | make_cleanup_fytpe. | |
e4005526 AC |
950 | (discard_my_cleanups): Don't cast argument to free. |
951 | ||
97bb9d91 EZ |
952 | 2000-03-03 Elena Zannoni <[email protected]> |
953 | ||
954 | * defs.h (struct continuation_arg): Change type of field 'data' | |
7b83ea04 | 955 | from PTR to void *. |
97bb9d91 EZ |
956 | |
957 | * event-loop.h: Eliminate uses of PTR, use 'void *' instead. | |
958 | ||
959 | * event-top.c: Ditto. | |
960 | ||
b3a90332 AC |
961 | Fri Mar 3 15:39:34 2000 Andrew Cagney <[email protected]> |
962 | ||
963 | * Makefile.in (CONFIG_CLEAN, CONFIG_ALL, LN_S): Defined by | |
7b83ea04 | 964 | configure. |
b3a90332 | 965 | (SUBDIR_MI_CLEAN, SUBDIR_GDBTK_CLEAN, SUBDIR_MI_ALL, |
7b83ea04 | 966 | SUBDIR_GDBTK_ALL): Define. |
b3a90332 AC |
967 | (all-gdbtk, clean-gdbtk): New targets. |
968 | (all): Add CONFIG_ALL as dependency. | |
969 | (clean): Add CONFIG_CLEAN as dependency. | |
0729fd50 | 970 | |
b3a90332 AC |
971 | * configure.in (CONFIG_ALL, CONFIG_CLEAN): Define. |
972 | (LN_S): Define. Delete GDBtk's link code. | |
973 | ||
379d6434 AC |
974 | Fri Mar 3 13:12:34 2000 Andrew Cagney <[email protected]> |
975 | ||
976 | * configure.in (ENABLE_GDBTK): Delete variable. | |
977 | (enable-gdbtk): Only enable gdbtk when there is a GDBTK directory. | |
978 | * Makefile.in: Update. | |
979 | * configure: Regenerate | |
980 | ||
7b64ac2f EZ |
981 | 2000-03-02 Elena Zannoni <[email protected]> |
982 | ||
983 | * config/alpha/alpha-linux.mh: Remove core-regset.o fron the | |
7b83ea04 | 984 | NATDEPFILES list. |
7b64ac2f | 985 | |
667620fa MK |
986 | 2000-03-02 Mark Kettenis <[email protected]> |
987 | ||
988 | * config/i386/tm-i386aix.h (NUM_FPREGS, NUM_REGS, REGISTER_BYTES): | |
989 | Override definitions to include the normal FPU registers. | |
990 | (REGISTER_CONVERTIBLE, REGISTER_CONVERT_TO_VIRTUAL, | |
991 | REGISTER_CONVERT_TO_RAW): Removed. The default definitions are | |
992 | fine for AIX/i386. | |
993 | (i387_to_double, double_to_i387): Remove prototypes. | |
994 | ||
3db87ba3 KB |
995 | 2000-03-02 Kevin Buettner <[email protected]> |
996 | ||
997 | * findvar.c (extract_floating, store_floating): Use target | |
998 | floating point type sizes rather host sizes to determine | |
999 | which conversion needs to be done. | |
1000 | ||
6c7e601e ND |
1001 | 2000-03-02 Nick Duffek <[email protected]> |
1002 | ||
1003 | * uw-thread.c: Apply GNU conventions to comment formatting. | |
1004 | (deactivate_uw_thread): Call remove_thread_event_breakpoints(). | |
1005 | (uw_thread_mourn_inferior): Move remove_thread_event_breakpoints() | |
1006 | call to deactivate_uw_thread(). | |
1007 | ||
a09e9d09 AC |
1008 | Thu Mar 2 09:04:46 2000 Andrew Cagney <[email protected]> |
1009 | ||
0729fd50 | 1010 | * MAINTAINERS: Daniel Berlin is C++ maintainer. |
a09e9d09 | 1011 | |
ef7b4488 AC |
1012 | Thu Mar 2 08:55:35 2000 Andrew Cagney <[email protected]> |
1013 | ||
1014 | * MAINTAINERS: Mark Kettenis is the x86 architcture maintainer and | |
7b83ea04 AC |
1015 | a joint GNU/Linux/x86 maintainer. Nick Duffeck and Robert Lipe |
1016 | share SCO/Unixware. Nick Duffek and Peter Schauer share | |
1017 | Solaris/x86. | |
a09e9d09 | 1018 | |
75660bc0 | 1019 | Wed Mar 1 22:12:35 2000 Andrew Cagney <[email protected]> |
0729fd50 | 1020 | |
75660bc0 AC |
1021 | From Wed 23 Feb 2000 Fernando Nasser <[email protected]>: |
1022 | * remote-sim.c (gdbsim_close): Call generic_mourn_inferior. | |
0729fd50 | 1023 | * remote-rdi.c (arm_rdi_close): Ditto. |
75660bc0 | 1024 | |
15db4a06 AC |
1025 | Wed Mar 1 19:31:32 2000 Andrew Cagney <[email protected]> |
1026 | ||
1027 | * CONTRIBUTE (configure.in): Note that patches to configure are | |
7b83ea04 | 1028 | not needed. |
15db4a06 | 1029 | |
80582566 MK |
1030 | 2000-03-01 Mark Kettenis <[email protected]> |
1031 | ||
1032 | * MAINTAINERS: Correct my own mail address. | |
1033 | ||
dfe25b3a AC |
1034 | Wed Mar 1 11:26:07 2000 Andrew Cagney <[email protected]> |
1035 | ||
1036 | * MAINTAINERS: Document people with paperwork pending. | |
1037 | ||
05e28a7b AC |
1038 | Wed Mar 1 00:49:06 2000 Andrew Cagney <[email protected]> |
1039 | ||
1040 | From 2000-02-28 Peter Schauer <[email protected]>: | |
1041 | Make NEW_PROC_ABI interface functional on Solaris x86. | |
1042 | * sol-thread.c (ps_lgetLDT): Rewrite to use new | |
7b83ea04 AC |
1043 | procfs_find_LDT_entry function from procfs.c, mostly copied from |
1044 | lin-thread.c. | |
05e28a7b | 1045 | * inferior.h, procfs.c (procfs_get_pid_fd): Removed, no longer |
7b83ea04 | 1046 | needed. |
05e28a7b | 1047 | |
b241ba8e AC |
1048 | Wed Mar 1 00:34:55 2000 Andrew Cagney <[email protected]> |
1049 | ||
1050 | From 2000-02-26 Peter Schauer <[email protected]>: | |
1051 | * config/i386/tm-i386sol2.h (MERGEPID): Define. | |
1052 | ||
1211c4e4 AC |
1053 | Wed Mar 1 00:06:19 2000 Andrew Cagney <[email protected]> |
1054 | ||
1055 | From 1999-08-13 J.T. Conklin <[email protected]>: | |
7b83ea04 AC |
1056 | * config/i386/tm-i386.h (FRAME_INIT_SAVED_REGS): Replace |
1057 | FRAME_FIND_SAVED_REGS. | |
1058 | (i386_frame_init_saved_regs): Replace i386_frame_find_saved_regs. | |
1059 | * i386-tdep.c (i386_frame_init_saved_regs, i386_pop_frame): | |
1060 | Update. | |
1211c4e4 | 1061 | |
2fc18c15 AC |
1062 | Tue Feb 29 23:56:41 2000 Andrew Cagney <[email protected]> |
1063 | ||
1064 | From 2000-02-23 Peter Schauer <[email protected]>: | |
1065 | * objfiles.c (open_mapped_file): Fix obsolete references to `mapped' | |
1066 | parameter. | |
1067 | ||
02409499 AC |
1068 | Tue Feb 29 18:47:58 2000 Andrew Cagney <[email protected]> |
1069 | ||
1070 | From 2000-02-23 Eli Zaretskii <[email protected]>: | |
1071 | * config/i386/nm-go32.h (FLOAT_INFO): Remove macro definition. | |
1072 | (top level): Add prototypes for go32_* functions. | |
1073 | * config/i386/tm-go32.h (I386_DJGPP_TARGET): Define. | |
1074 | (FRAME_CHAIN, FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC): | |
1075 | Override definitions from tm-i386.h. | |
1076 | (REGISTER_VIRTUAL_TYPE): Remove macro definition. | |
1077 | * i386-tdep.c (i386_extract_return_value) | |
1078 | [I386_AIX_TARGET || I386_GNULINUX_TARGET]: Add I386_DJGPP_TARGET | |
1079 | to the list of targets which return FP values in FP registers. | |
1080 | ||
1081 | * i386-tdep.c (i386_extract_return_value): Add FIXME recommending | |
7b83ea04 | 1082 | that this function be re-implemented using multi-arch. |
02409499 | 1083 | |
9d271fd8 AC |
1084 | Tue Feb 29 18:40:08 2000 Andrew Cagney <[email protected]> |
1085 | ||
1086 | From 2000-02-23 Eli Zaretskii <[email protected]>: | |
1087 | * utils.c [__GO32__]: Include pc.h, for prototypes of ScreenCols | |
1088 | and ScreenRows. | |
1089 | * ser-go32.c: Include string.h, for prototype of strncasecmp. | |
1090 | (dpmi_regs, dpmi_sregs): Remove unused variables. | |
1091 | (dos_flush_input): Return a value, to prevent compiler warning. | |
1092 | * expprint.c (dump_prefix_expression): Use %ld in format and cast | |
1093 | sizeof(union exp_element) to long, to prevent GCC from complaining | |
1094 | about format/argument mismatch. | |
1095 | (dump_postfix_expression): Likewise. | |
1096 | ||
30f6df08 AC |
1097 | Tue Feb 29 18:09:46 2000 Andrew Cagney <[email protected]> |
1098 | ||
1099 | * arm-tdep.c: Include <ctype.h>. | |
1100 | ||
d082b2bb AC |
1101 | Tue Feb 29 17:33:49 2000 Andrew Cagney <[email protected]> |
1102 | ||
1103 | From Wed, 23 Feb 2000 Fernando Nasser <[email protected]>: | |
1104 | * stack.c (backtrace_command_1), infrun.c (normal_stop): Check | |
7b83ea04 | 1105 | that the target's stack was valid. |
d082b2bb | 1106 | |
244106e8 AC |
1107 | Tue Feb 29 15:14:56 2000 Andrew Cagney <[email protected]> |
1108 | ||
1109 | From 2000-02-22 Stephane Carrez <[email protected]>: | |
7b83ea04 | 1110 | * dwarf2read.c (read_address): Read 16-bits addresses. |
244106e8 | 1111 | |
56624b0a SB |
1112 | 2000-02-28 Scott Bambrough <[email protected]> |
1113 | ||
1114 | * arm-linux-nat.c (fetch_nw_fpe_*): | |
7b83ea04 | 1115 | Renamed to fetch_nwfpe_* to use the same naming convention |
56624b0a SB |
1116 | as in the Linux kernel. Modified prototype to get rid of |
1117 | unused parameters. | |
1118 | (store_nw_fpe_*): Renamed to store_nwfpe_* to use the same | |
0729fd50 | 1119 | naming convention as in the Linux kernel. Fixed calls to |
56624b0a SB |
1120 | fetch_nwfpe_*. |
1121 | (store_fpregs): Fixed calls to store_nwfpe_*. Removed | |
0729fd50 | 1122 | unused variable. |
56624b0a | 1123 | |
388c1733 AC |
1124 | Mon Feb 28 18:24:32 2000 Andrew Cagney <[email protected]> |
1125 | ||
1126 | * MAINTAINERS: Transfer d30v maintainership to David Taylor. | |
1127 | ||
f0d42432 CF |
1128 | 2000-02-28 Christopher Faylor <[email protected]> |
1129 | ||
1130 | * win32-nat.c: Remove unneeded header. | |
1131 | * wince.c: Ditto. | |
1132 | ||
c322964e AC |
1133 | Mon Feb 28 13:34:54 2000 Andrew Cagney <[email protected]> |
1134 | ||
1135 | * wince.c: Include "gdb_wait.h" and not "wait.h". | |
1136 | ||
8860ff2e AC |
1137 | Mon Feb 28 10:58:45 2000 Andrew Cagney <[email protected]> |
1138 | ||
1139 | * MAINTAINERS: Mention mmalloc. Expand Host/Native and | |
7b83ea04 | 1140 | Target/Architecture maintainers descriptions. |
8860ff2e | 1141 | |
942fd805 MK |
1142 | 2000-02-26 Mark Kettenis <[email protected]> |
1143 | ||
1144 | * gnu-nat.c: Include "gdbthread.h". Include <hurd.h>. | |
1145 | Reorder headers a bit. Overall cleanup and minor reformatting. | |
1146 | (MIG_SERVER_DIED): Remove define. | |
1147 | (proc_update_sc): Add braces to silence compiler warning. | |
1148 | (proc_steal_exc_port): Initialize err to zero. | |
1149 | (make_proc): Add braces to silence compiler warning. | |
1150 | (inf_validate_task_sc): Add cast to silence compiler warning. | |
1151 | (inf_set_traced): Reorganize a bit to silence compiler warning. | |
1152 | (inf_validate_procs): Use mach_msg_type_number_t for all thread | |
1153 | numbers and add braces to silence compiler warning. | |
1154 | (gnu_wait): Add prototypes for server functions and add braces to | |
1155 | silence compiler warnings. | |
1156 | (S_exception_raise_request): Pass subcode to inf_debug call. | |
1157 | (gnu_write_inferior): Remove unused variable `protection_changed'. | |
1158 | (gnu_xfer_memory): Remove unused variable `result'. | |
1159 | (set_sig_thread_cmd): Remove unused varible `tid'. | |
1160 | (set_signals_cmd): Remve unused variable `trace'. | |
1161 | (add_task_commands): Provide complete prototype. Reformat help | |
1162 | strings a bit to make sure the first line is a full sentence. | |
1163 | Call info_port_rights_cmd instead of info_send_rights_cmd for the | |
1164 | "info port-rights" command. | |
1165 | (add_thread_commands): Provide complete prototype. Make static. | |
1166 | Reformat help strings a bit to make sure the first line is a full | |
1167 | sentence. | |
1168 | (_initialize_gnu_nat): Provide complete prototype. | |
1169 | ||
75c6e08a MK |
1170 | 2000-02-26 Mark Kettenis <[email protected]> |
1171 | ||
1172 | Make cross-compilation for the Hurd more friendly. | |
1173 | From Jeff Bailey <[email protected]>: | |
1174 | * configure.in: Use AC_CHECK_TOOL to find MiG. | |
1175 | * Makefile.in (MIG): New variable. | |
1176 | * config/i386/i386gnu.mh (MIG): Remove. | |
1177 | * configure: Regenerated. | |
1178 | ||
ddb20c56 KB |
1179 | 2000-02-26 Kevin Buettner <[email protected]> |
1180 | ||
1181 | * ppc-linux-tdep.c (ppc_linux_memory_remove_breakpoint): Add | |
1182 | comment explaining motivation behind this function and why | |
1183 | the generic facilities won't work for this platform. | |
1184 | * rs6000-tdep.c (skip_prologue): Always test to make sure | |
1185 | that an instruction is read successfully from the target's | |
1186 | memory. Introduce notion of instructions which may appear in | |
1187 | the prologue, but may not end the prologue. Added explicit | |
1188 | check for nop instruction. Use memset() to zero the frame | |
1189 | data instead of assignment from a statically allocated, | |
1190 | uninitialized structure. | |
1191 | ||
2a20d068 AC |
1192 | Sat Feb 26 17:15:16 2000 Andrew Cagney <[email protected]> |
1193 | ||
1194 | * MAINTAINERS: Chris Faylor is responsible for all MS Windows | |
7b83ea04 AC |
1195 | systems. Note that Jim Blandy as maintainer for ``tracing |
1196 | bytecode stuff'' | |
2a20d068 | 1197 | |
608d5915 FN |
1198 | 2000-02-25 Fernando Nasser <[email protected]> |
1199 | ||
1200 | From: Thomas Zenker <[email protected]> | |
1201 | * rdi-share/hsys.c: to compile under 4.4BSD derived systems (FreeBSD, | |
1202 | NetBSD...) sys_errlist should not be declared in hsys.c. | |
1203 | NEED_SYSERRLIST is set already by configure, so we can use it. | |
1204 | * rdi-share/unixcomm.c: 4.4BSD derived systems define BSD, but are | |
1205 | posix compliant and we should not work with the old compatibility | |
1206 | stuff. Because of that I undef BSD in case of FBSD etc and include | |
1207 | sys/ioctl to get the flags. | |
1208 | * rdi-share/unixcomm.c: If the TIOCEXCL flags exists set serial line | |
1209 | for exclusive use. | |
1210 | ||
482ca3f5 KB |
1211 | 2000-02-24 Kevin Buettner <[email protected]> |
1212 | ||
1213 | * ppc-linux-tdep.c (ppc_sysv_abi_push_arguments): Put address | |
1214 | of return structure in r3 if necessary. | |
1215 | (ppc_linux_memory_remove_breakpoints): New function. | |
1216 | * rs6000-tdep.c (skip_prologue): Make sure that the cases | |
1217 | for storing either cr or lr to the stack only handle those | |
1218 | cases. (I.e, don't let these cases match 0x00000000 which is | |
1219 | found found in the shared library trampoline prior to the | |
1220 | loading of the shared library.) | |
1221 | * config/powerpc/tm-linux.h (ppc_linux_memory_remove_breakpoint): | |
1222 | Declare. | |
1223 | (MEMORY_REMOVE_BREAKPOINT): Define. | |
1224 | ||
a526d713 AC |
1225 | Wed Feb 23 23:27:48 2000 Andrew Cagney <[email protected]> |
1226 | ||
1227 | * hppah-nat.c: Include "gdb_wait.h" instead of <wait.h>. | |
1228 | ||
e56ac5c3 AC |
1229 | Thu Feb 24 18:42:15 2000 Andrew Cagney <[email protected]> |
1230 | ||
1231 | * configure.in (CONFIG_INSTALL, CONFIG_UNINSTALL): Set to | |
7b83ea04 | 1232 | $(SUBDIR_*_INSTALL) when so configured. |
e56ac5c3 | 1233 | * configure: Regenerate. |
0729fd50 | 1234 | |
e56ac5c3 | 1235 | * Makefile.in (CONFIG_INSTALL, CONFIG_UNINSTALL): Define using |
7b83ea04 | 1236 | configure. |
e56ac5c3 | 1237 | (install-only): Add dependency on $(CONFIG_INSTALL). Delete code |
7b83ea04 | 1238 | installing GDBtk. |
e56ac5c3 AC |
1239 | (uninstall): Add dependency on $(CONFIG_UNINSTALL). |
1240 | (SUBDIR_MI_INSTALL, SUBDIR_MI_UNINSTALL, SUBDIR_GDBTK_UNINSTALL, | |
7b83ea04 | 1241 | SUBDIR_GDBTK_INSTALL): Define. |
e56ac5c3 AC |
1242 | (install-gdbtk): New target. |
1243 | ||
b0b1b869 AC |
1244 | Thu Feb 24 18:19:52 2000 Andrew Cagney <[email protected]> |
1245 | ||
1246 | * configure.in (SUBDIR_MI_CFLAGS): Fix typo, wrong brace. | |
1247 | * configure: Regenerate. | |
0729fd50 | 1248 | |
091be84d CF |
1249 | 2000-02-24 Christopher Faylor <[email protected]> |
1250 | ||
1251 | * configure.tgt: Add arm, mips, sh wince targets. | |
1252 | * config/arm/tm-wince.h: New file. | |
33ee05bc | 1253 | * config/arm/wince.mt: New file. |
091be84d | 1254 | * config/sh/tm-wince.h: New file. |
33ee05bc | 1255 | * config/sh/wince.mt: New file. |
091be84d | 1256 | * config/mips/tm-wince.h: New file. |
33ee05bc | 1257 | * config/mips/wince.mt: New file. |
091be84d CF |
1258 | * wince.c: New file. |
1259 | * wince-stub.c: New file. | |
1260 | * wince-stub.h: New file. | |
1261 | * sh-tdep.c: Use correct register names for Windows CE. | |
1262 | ||
99eeeb0f ND |
1263 | Wed Feb 23 19:01:45 EST 2000 Nicholas Duffek <[email protected]> |
1264 | ||
1265 | * top.c (SIGJMP_BUF, SIGSETJMP, SIGLONGJMP): Update comments. | |
1266 | (error_return, quit_return): Merge into catch_return pointer. | |
1267 | (return_to_top_level): Update comment. Longjmp to *catch_errors, | |
1268 | and communicate reason to catch_errors via setjmp return value. | |
1269 | (catch_errors): Always catch both quit and error, and if a catch | |
1270 | wasn't requested by caller, throw it to the next catch_error. | |
1271 | Replace dual longjmp buffer memcpy with single pointer change. | |
1272 | Add FIXME for possibly adding new interface to tell caller what | |
1273 | event was caught. Add extensive comments. | |
1274 | * defs.h (enum return_reason): Reserve 0 for use as initial | |
1275 | setjmp() return value. | |
1276 | (RETURN_MASK): New public macro to generate RETURN_MASK_* from | |
1277 | enum return_reason. | |
1278 | (RETURN_MASK_QUIT, RETURN_MASK_ERROR): Define using RETURN_MASK. | |
1279 | ||
242bfc55 FN |
1280 | 2000-02-23 Fernando Nasser <[email protected]> |
1281 | ||
1282 | * infcmd.c (run_stack_dummy): Do not pop frame on random signal. | |
1283 | * valops.c (_initialize_valops): Add command "set unwindonsignal". | |
1284 | (hand_function_call): Test for unwind_on_signal and act accordingly. | |
1285 | ||
ff844c8d AC |
1286 | Wed Feb 23 12:58:46 2000 Andrew Cagney <[email protected]> |
1287 | ||
1288 | * gdbarch.sh (dis_asm_read_memory): Change LEN to unsigned long. | |
7b83ea04 | 1289 | Match ../include/dis-asm.h change. |
ff844c8d AC |
1290 | * gdbarch.h: Regenerate. |
1291 | * corefile.c (dis_asm_read_memory): Update. | |
1292 | ||
fb40c209 AC |
1293 | Mon Feb 21 13:57:27 2000 Andrew Cagney <[email protected]> |
1294 | ||
1295 | * configure.in (CONFIG_INITS): Fix typo, was CONFIG_INIT. | |
1296 | (ENABLE_CFLAGS): Move initialization to start of file. | |
1297 | (enable-gdbmi): Add new configure option --enable-gdbmi. When | |
7b83ea04 AC |
1298 | selected and an ${srcdir}/mi directory is present enable MI |
1299 | interface. | |
fb40c209 AC |
1300 | |
1301 | * configure: Regenerate. | |
0729fd50 | 1302 | |
fb40c209 | 1303 | * Makefile.in (SUBDIR_MI_OBS, SUBDIR_MI_SRCS, SUBDIR_MI_DEPS, |
7b83ea04 | 1304 | SUBDIR_MI_INITS, SUBDIR_MI_LDFLAGS, SUBDIR_MI_CFLAGS): New macros. |
fb40c209 | 1305 | (CONFIG_OBS, CONFIG_SRCS, CONFIG_DEPS, CONFIG_INITS, |
7b83ea04 AC |
1306 | CONFIG_LDFLAGS): New macros. Initialized by autoconf via |
1307 | @CONFIG...@. | |
fb40c209 | 1308 | (INTERNAL_LDFLAGS, CDEPS, LINTFILES, DEPFILES, SOURCES, |
7b83ea04 | 1309 | INIT_FILES): Use $(CONFIG_...) instead of @CONFIG...@. |
fb40c209 AC |
1310 | |
1311 | * mi: New directory. MI interface to GDB. | |
1312 | ||
1313 | * defs.h (interpreter_p): Declare when UI_OUT. | |
1314 | * top.c (gdb_init): When interpreter_p, check that the interpreter | |
7b83ea04 | 1315 | was recognized by one of the linked in interpreters. |
fb40c209 AC |
1316 | * main.c (interpreter_p): Define. |
1317 | (captured_main): When UI_OUT, check for ``-i <interpreter>'' option. | |
1318 | * event-top.c (display_gdb_prompt): When interpreter_p, assume | |
7b83ea04 | 1319 | interpreter displays prompt. |
fb40c209 AC |
1320 | |
1321 | * breakpoint.c (print_it_typical, watchpoint_check, | |
7b83ea04 | 1322 | print_one_breakpoint, mention): When MI include additional |
fb40c209 AC |
1323 | target status information. |
1324 | * infrun.c (print_stop_reason, normal_stop): Ditto. | |
1325 | ||
14e0eb3b JB |
1326 | 2000-02-22 Jim Blandy <[email protected]> |
1327 | ||
1328 | * gdbarch.sh: Make the `default' field really default to zero, as | |
7b83ea04 | 1329 | documented. |
14e0eb3b JB |
1330 | |
1331 | Bring COERCE_FLOAT_TO_DOUBLE under gdbarch's control. | |
1332 | * valops.c (COERCE_FLOAT_TO_DOUBLE): Rework definition to be | |
1333 | more function-like. | |
1334 | (default_coerce_float_to_double, standard_coerce_float_to_double): | |
1335 | New functions. | |
1336 | (value_arg_coerce): Adjust for new definition. | |
1337 | * value.h (default_coerce_float_to_double, | |
1338 | standard_coerce_float_to_double): New declarations for the above. | |
1339 | * gdbarch.sh (coerce_float_to_double): New entry, replacing macro. | |
1340 | * gdbarch.c, gdbarch.h: Regenerated. | |
1341 | * tm-alpha.h, tm-fr30.h, tm-m32r.h, tm-mips.h, tm-hppa.h, | |
7b83ea04 AC |
1342 | tm-rs6000.h, tm-sh.h, tm-sparc.h (COERCE_FLOAT_TO_DOUBLE): Change |
1343 | definitions. | |
14e0eb3b JB |
1344 | * mips-tdep.c (mips_coerce_float_to_double): Supply our own custom |
1345 | function here. | |
1346 | (mips_gdbarch_init): Install that as our coerce_float_to_double | |
1347 | function. | |
1348 | ||
50c9bd31 KB |
1349 | 2000-02-22 Kevin Buettner <[email protected]> |
1350 | ||
1351 | * ppc-linux-nat.c (supply_gregset, supply_fpregset): Add return | |
1352 | type. | |
1353 | * ppc-linux-tdep.c (ppc_linux_at_sigtramp_return_path): Add | |
1354 | forward declaration. | |
1355 | ||
1356 | * ppc-linux-tdep.c (ppc_linux_frame_saved_pc): Handle case | |
1357 | where the next frame is a signal handler caller. | |
1358 | ||
1359 | * config/powerpc/tm-linux.h (PUSH_ARGUMENTS): Remove extraneous | |
1360 | undef. | |
1361 | (tm-linux.h): Include. | |
1362 | (tm-sysv4.h): Don't include (directly). config/tm-linux.h will | |
1363 | include this file for us. | |
1364 | (REALTIME_LO, REALTIME_HI): Don't define. These are defined by | |
1365 | config/tm-linux.h for us. | |
1366 | (SOFUN_ADDRESS_MAYBE_MISSING): Define. | |
1367 | ||
223b8554 KB |
1368 | 2000-02-21 Kevin Buettner <[email protected]> |
1369 | ||
1370 | * Makefile.in (ppc-linux-nat.c, ppc-linux-tdep.c): New files. | |
1371 | (ppc-linux-nat.o, ppc-linux-tdep.o): Add dependencies. | |
1372 | * configure.tgt (powerpc-*-linux*): Separate from powerpc-*-eabi | |
1373 | and like targets. | |
1374 | ||
1375 | * ppc-linux-nat.c, ppc-linux-tdep.c, config/powerpc/linux.mt, | |
1376 | config/powerpc/nm-linux.h, config/powerpc/tm-linux.h: New files. | |
1377 | * config/powerpc/xm-linux.h: Substantially revised for native | |
1378 | port. | |
8883511e KB |
1379 | * config/powerpc/linux.mh (NAT_FILE): Redefine to be nm-linux.h. |
1380 | (NATDEPFILES): Update list to reflect the fact that we can | |
1381 | now debug natively. | |
223b8554 KB |
1382 | |
1383 | * rs6000-tdep.c, config/rs6000/tm-rs6000.h | |
1384 | (rs6000_frameless_function_invocation, rs6000_frame_saved_pc): | |
1385 | Renamed; The former names were lacking the rs6000_ prefix. | |
1386 | * rs6000-tdep.c (rs6000_frame_saved_pc): Call FRAME_CHAIN | |
1387 | instead of rs6000_frame_chain. | |
1388 | (rs6000_frame_chain): Call FRAMELESS_FUNCTION_INVOCATION instead | |
1389 | of rs6000_frameless_function_invocation. | |
1390 | ||
750334d7 EZ |
1391 | 2000-02-21 Elena Zannoni <[email protected]> |
1392 | ||
1393 | From Philippe De Muyter <[email protected]> | |
1394 | ||
1395 | * event-loop.c (handle_file_event): In case of poll, enable | |
7b83ea04 AC |
1396 | printing of informational message if an error/exception is |
1397 | detected on the file descriptor. | |
750334d7 | 1398 | |
2403ff6f JK |
1399 | 2000-02-21 Jim Kingdon <[email protected]> |
1400 | ||
1401 | * MAINTAINERS (Misc): Clarify that yes, anyone can edit web pages. | |
1402 | ||
f7cb3ef8 AC |
1403 | Mon Feb 21 12:50:57 2000 Andrew Cagney <[email protected]> |
1404 | ||
91b9ff21 | 1405 | * buildsym.c: Include "language.h" and "expression.h" for |
7b83ea04 | 1406 | longest_local_hex_string_custom. |
f7cb3ef8 | 1407 | |
0596389c AC |
1408 | Mon Feb 21 11:17:18 2000 Andrew Cagney <[email protected]> |
1409 | ||
1410 | * gdbarch.sh: Include <gdb_wait.h> instead of <wait.h>. | |
1411 | * gdbarch.c: Already updated by Wed Feb 9 18:59:16 2000 Andrew | |
7b83ea04 | 1412 | Cagney <[email protected]>. |
0596389c | 1413 | |
f5bca8e7 AC |
1414 | Mon Feb 21 11:03:01 2000 Andrew Cagney <[email protected]> |
1415 | ||
1416 | * MAINTAINERS: Update: IA-64 - Kevin Buettner; ARM - Fernando | |
7b83ea04 AC |
1417 | nasser, Jim Ingham and Scott Bambrough; GNU/Linux ARM - Scott |
1418 | Bambrough; event loop - Elena Zannoni; SDS and RDI/APD protocol - | |
1419 | to Fernando Nasser and Jim Ingham; KOD - Fernando Nasser; MI - | |
1420 | Andrew Cagney, Elena Zannoni and Fernando Nasser; Web pages - Jim | |
1421 | Kingdon. | |
f5bca8e7 | 1422 | * MAINTAINERS: Add Nick Clifton to write after approval list. |
0729fd50 | 1423 | |
538aae9d AC |
1424 | Mon Feb 21 10:30:39 2000 Andrew Cagney <[email protected]> |
1425 | ||
1426 | * MAINTAINERS: Add note on multiple maintainers. | |
1427 | ||
55555bbc FN |
1428 | 2000-02-19 Philippe De Muyter <[email protected]> |
1429 | ||
7b83ea04 AC |
1430 | * cli-out.c (cli_table_header): Type of parameter `alignment' is |
1431 | `enum ui_align', not `int'. | |
1432 | (cli_field_string, cli_field_skip): Likewise. | |
55555bbc | 1433 | |
dea753cd | 1434 | 2000-02-18 Jim Blandy <[email protected]> |
9a90a845 | 1435 | |
dea753cd | 1436 | From Jimmy Guo <[email protected]>: |
9a90a845 JB |
1437 | * buildsym.h (add_free_pendings): Declare. |
1438 | * buildsym.c (add_free_pendings): New function. | |
1439 | (make_blockvector): 32x64 fix using longest_local_hex_string(). | |
1440 | (start_subfile): initialize variable 'subfile'. | |
1441 | ||
cca728d0 EZ |
1442 | 2000-02-18 Elena Zannoni <[email protected]> |
1443 | ||
1444 | * remote.c (remote_async_detach): Use target_mourn_inferior(), to | |
7b83ea04 AC |
1445 | make sure that all is cleaned up after we disconnect from the |
1446 | target. | |
cca728d0 EZ |
1447 | (remote_detach): Ditto. |
1448 | ||
e8b09175 FN |
1449 | 2000-02-17 Fernando Nasser <[email protected]> |
1450 | ||
b8d86de3 FN |
1451 | From Rodney Brown <[email protected]> |
1452 | * ui-out.c (ui_out_set_flags): Fix typo, removing warning and | |
1453 | potentially harming mistake. | |
1454 | ||
41815666 FN |
1455 | 2000-02-17 Fernando Nasser <[email protected]> |
1456 | ||
e8b09175 FN |
1457 | * arm-tdep.c: Use header file instead of extern declarations for |
1458 | the {get,set}_arm_regname* functions. | |
1459 | ||
d45b9300 FN |
1460 | 2000-02-16 Fernando Nasser <[email protected]> |
1461 | ||
1462 | * configure.in: Replaces obsolete gdbtk-variable.c with | |
1463 | gdbtk-varobj.c. | |
1464 | * configure: Regenerate. | |
1465 | * Makefile.in: Remove obsolete/extraneous references to | |
1466 | gdbtk-var* files. | |
1467 | ||
e95a43ad MK |
1468 | 2000-02-16 Mark Kettenis <[email protected]> |
1469 | ||
1470 | * target.c (do_target_signal_to_host): Do not use REALTIME_LO in | |
1471 | the conversion of the signal number. TARGET_SIGNAL_REALTIME_33 is | |
1472 | 33 by definition, whereas REALTIME_LO might be 32 on systems that | |
1473 | have SIG32 such as Linux. Make sure that the signal number | |
1474 | returned is within the range specified by REALTIME_LO and | |
1475 | REALTIME_HI. | |
1476 | ||
7433da22 MK |
1477 | 2000-02-16 Mark Kettenis <[email protected]> |
1478 | ||
1479 | * configure: Regenerated. | |
1480 | ||
bc90b915 FN |
1481 | 2000-02-16 Fernando Nasser <[email protected]> |
1482 | ||
1483 | * arm-tdep.c (set_disassembly_flavor, arm_othernames, | |
1484 | _initialize_arm_tdep): Allows the user to choose between any of | |
1485 | the flavors available for the disassembly to be used in the "info | |
1486 | reg" command and elsewhere in gdb. It prevents having to maintain | |
1487 | this information in two places by using the data kept in the | |
1488 | opcodes directory. | |
1489 | ||
83d37ec8 MK |
1490 | 2000-02-09 Mark Kettenis <[email protected]> |
1491 | ||
1492 | * configure.in: Check for lwpid_t, psaddr_t, prgregset_t and | |
1493 | prfpregset_t in <sys/procfs.h>. | |
1494 | * config.in: Add HAVE_LWPID_T, HAVE_PSADDR_T, HAVE_PRGREGSET_T, | |
1495 | HAVE_PRFPREGSET_T. | |
1496 | * gdb_proc_service.h: Only provide typedefs for lwpid_t, psaddr_t, | |
1497 | prgregset_t and prfpregset_t if they are not already present. | |
1498 | ||
eeefac92 AC |
1499 | Wed Feb 16 19:00:02 2000 Andrew Cagney <[email protected]> |
1500 | ||
1501 | From 2000-01-26 Rodney Brown <[email protected]>: | |
7b83ea04 | 1502 | * procfs.c: Define MERGEPID if not defined. For osf4.0e. |
eeefac92 | 1503 | |
1a645206 JM |
1504 | 2000-02-15 Jason Molenda ([email protected]) |
1505 | ||
1506 | * Makefile.in (diststuff): Run 'diststuff' in doc/ subdir, not | |
1507 | 'do-doc'. | |
1508 | ||
f6077098 KB |
1509 | 2000-02-15 Kevin Buettner <[email protected]> |
1510 | ||
1511 | Changes for AIX 4.3: | |
1512 | * rs6000-tdep.c (rs6000_fix_call_dummy): Set TOC register | |
1513 | to correct value for generic dummy frames. When using | |
1514 | generic dummy frames, don't attempt to write TOC value or | |
1515 | function to call into the call dummy. | |
7b83ea04 | 1516 | (rs6000_push_arguments): Adapt USE_GENERIC_DUMMY_FRAMES |
f6077098 KB |
1517 | code to also handle the PowerOpen ABI. |
1518 | (ppc_push_return_address): Enable for all ports. | |
1519 | * config/powerpc/tm-ppc-aix.h (USE_GENERIC_DUMMY_FRAMES, | |
0729fd50 | 1520 | PUSH_DUMMY_FRAME, PUSH_RETURN_ADDRESS, GET_SAVED_REGISTER, |
f6077098 KB |
1521 | CALL_DUMMY_BREAKPOINT_OFFSET, CALL_DUMMY_LOCATION, |
1522 | CALL_DUMMY_ADDRESS, CALL_DUMMY_START_OFFSET): Override defaults | |
1523 | provided by generic RS6000 definitions so that call dummies | |
1524 | are implemented using generic dummy frames instead. | |
1525 | ||
1526 | * rs6000-nat.c (store_inferior_registers): Call exec_one_dummy_insn() | |
1527 | prior to changing the stack pointer via ptrace(). Also, ignore | |
1528 | attempts to store to undefined registers that are less than | |
1529 | NUM_REGS. | |
1530 | ||
1531 | * rs6000-tdep.c (DUMMY_FRAME_SIZE): Change size of the dummy | |
1532 | frame from 436 to 448 to account for alignment padding. | |
1533 | (rs6000_push_arguments): Obtain actual register size instead | |
1534 | of assuming the register is 4 bytes long. [There's still | |
1535 | more work to be done to totally remove the 4 byte assumption, | |
1536 | however.] Make sure the stack is 16 byte aligned as required | |
1537 | by the PowerOpen ABI. Also, make sure that small structures | |
1538 | passed in registers are properly aligned within the register. | |
1539 | ||
1540 | 2000-02-15 Jesper Skov <[email protected]> | |
1541 | ||
1542 | Patch applied by Kevin Buettner <[email protected]> | |
0729fd50 | 1543 | |
f6077098 KB |
1544 | * rs6000-tdep.c (skip_prologue): skip copying of argument |
1545 | registers to local variable registers. | |
1546 | ||
70d5406d JK |
1547 | 2000-02-14 Jim Kingdon <[email protected]> |
1548 | ||
1549 | * elfread.c (elf_symtab_read): Revert changes by Amit S. Kale. A | |
1550 | sym->section->index number is not a SECT_OFF_* code. | |
1551 | ||
168770df AC |
1552 | Tue Feb 15 12:07:30 2000 Andrew Cagney <[email protected]> |
1553 | ||
1554 | * MAINTAINERS (write after approval): Add H.J. Lu. | |
1555 | ||
031d1bf1 NC |
1556 | 2000-02-14 Nick Clifton <[email protected]> |
1557 | ||
1558 | * sh-tdep.c: Remove extraneous code. | |
1559 | ||
2bc8a457 JK |
1560 | 2000-02-14 Amit S. Kale <[email protected]> |
1561 | ||
1562 | * elfread.c (elf_symtab_read): Move the use of sym to after where | |
1563 | it is set. | |
1564 | Checked in by Jim Kingdon <[email protected]> | |
1565 | ||
0c566c2e AC |
1566 | Mon Feb 14 15:39:01 2000 Andrew Cagney <[email protected]> |
1567 | ||
1568 | * MAINTAINERS: Make Nick Duffek the UnixWare threads maintainer. | |
1569 | ||
3ca72b44 AC |
1570 | Mon Feb 14 15:20:26 2000 Andrew Cagney <[email protected]> |
1571 | ||
1572 | From 1999-11-24 Jason Merrill <[email protected]>: | |
1573 | * dwarf2read.c: (die_is_declaration): New fn. | |
1574 | (read_structure_scope): Use it. | |
1575 | ||
1576 | * dwarf2read.c: (die_is_declaration): Convert to ISO-C. | |
1577 | ||
d6e9fb05 JK |
1578 | 2000-02-10 J.T. Conklin <[email protected]> |
1579 | ||
1580 | * config/i386/nbsd.mt (GDBSERVER_DEPFILES): Add low-nbsd.o | |
1581 | * configure.tgt (i[3456]86-*-netbsd*): add gdbserver to | |
7b83ea04 | 1582 | configdirs. |
d6e9fb05 | 1583 | * gdbserver/low-nbsd.c: New file. |
0729fd50 | 1584 | |
d6e9fb05 JK |
1585 | * gdbserver/Makefile.in: convert to autoconf. |
1586 | * gdbserver/configure.in: likewise. | |
1587 | * gdbserver/configure: generate. | |
1588 | ||
41c8e009 AC |
1589 | Sun Feb 13 11:21:00 2000 Andrew Cagney <[email protected]> |
1590 | ||
1591 | * CONTRIBUTE: New file. How to contribute to GDB. | |
1592 | ||
15929d05 AC |
1593 | Sun Feb 13 10:34:48 2000 Andrew Cagney <[email protected]> |
1594 | ||
1595 | * MAINTAINERS: Add Eli Zaretskii to djgpp maintiners. Add Kevin | |
7b83ea04 AC |
1596 | Buettner to powerpc maintainers. Make Kevin Buettner the |
1597 | GNU/LINUX PPC native maintainer. Add J.T. Conklin, Jim Kingdon | |
1598 | and Jason Molenda to write after aproval list. | |
15929d05 | 1599 | |
5185fdd7 AC |
1600 | Sun Feb 13 10:18:44 2000 Andrew Cagney <[email protected]> |
1601 | ||
1602 | * MAINTAINERS: Reformat. Separate into check-in categories. | |
1603 | ||
f086451a ND |
1604 | Sat Feb 12 01:08:21 EST 2000 Nicholas Duffek <[email protected]> |
1605 | ||
1606 | * uw-thread.c: Remove __FUNCTION__ GNUism. | |
1607 | ||
fa292f23 JK |
1608 | 2000-01-17 Amit S. Kale <[email protected]> |
1609 | ||
1610 | * elfread.c (elf_symtab_read): Use offset for the section in which a | |
1611 | symbol resides, instead of .text section for calculating address of a | |
1612 | symbol. | |
1613 | Checked in by Jim Kingdon <[email protected]> | |
1614 | ||
e18ef0bd JK |
1615 | 2000-02-10 Mark Kettenis <[email protected]> |
1616 | ||
1617 | * gnu-nat.c: Remove hackery to include <bits/waitflags.h>. It is | |
1618 | no longer necessary now we have gdb_wait.h. | |
1619 | ||
f90b2b1d JK |
1620 | 2000-02-09 Mark Kettenis <[email protected]> |
1621 | ||
1622 | * gnu-nat.c (proc_string): Make global. | |
1623 | (do_mach_notify_dead_name): Suppress dead name notifications if we | |
1624 | know that the task is dead. | |
1625 | ||
1626 | 1999-12-13 Mark Kettenis <[email protected]> | |
1627 | ||
1628 | * gnu-nat.c (inf_validate_task_sc): Get task info via proc server | |
1629 | instead of directly from the kernel. Add some hackery to make | |
1630 | sure that the info isn't influenced by suspension of the task in | |
1631 | the proc server itself. | |
1632 | ||
09f99d3f JK |
1633 | 2000-02-10 Jim Kingdon <[email protected]> |
1634 | ||
1635 | * defs.h (MERGEPID): Added. Patch submitted by Andrew Hobson and | |
1636 | approved by Michael Snyder. | |
1637 | ||
203051af AC |
1638 | 2000-02-09 Mark Kettenis <[email protected]> |
1639 | ||
7b83ea04 | 1640 | * linux-thread.c: Include defs.h before gdb_wait.h. |
203051af | 1641 | |
03f2053f AC |
1642 | Wed Feb 9 18:59:16 2000 Andrew Cagney <[email protected]> |
1643 | ||
1644 | * Makefile.in (wait_h): Delete macro. Update all dependencies | |
7b83ea04 | 1645 | specifying gdb_wait.h instead. |
03f2053f AC |
1646 | |
1647 | * ser-unix.c, ser-pipe.c, remote.c, remote-udi.c, remote-sds.c, | |
7b83ea04 AC |
1648 | remote-os9k.c, remote-es.c, remote-rdp.c, remote-vx960.c, |
1649 | remote-vx.c, remote-st.c, remote-nindy.c, remote-mm.c, | |
1650 | convex-xdep.c, convex-tdep.c, target.c, win32-nat.c, standalone.c, | |
1651 | remote-vxmips.c, remote-vxsparc.c, remote-vx68.c, remote-vx29k.c, | |
1652 | remote-sim.c, remote-rdi.c, remote-mips.c, remote-eb.c, | |
1653 | remote-e7000.c, remote-bug.c, remote-array.c, remote-adapt.c, | |
1654 | ppc-bdm.c, ocd.c, monitor.c, m3-nat.c, linux-thread.c, | |
1655 | infttrace.c, lin-thread.c, infptrace.c, gnu-nat.c, gdbarch.c, | |
1656 | fork-child.c, command.c: Include "gdb_wait.h" instead of <wait.h> | |
1657 | or <sys/wait.h>. | |
145679a8 | 1658 | * nindy-share/nindy.c, nindy-share/Onindy.c: Ditto. |
03f2053f AC |
1659 | |
1660 | * gdb_wait.h: New file. Based on ../include/wait.h. Include | |
7b83ea04 | 1661 | <sys/wait.h> or <wait.h> and then define any missing WIF macros. |
03f2053f | 1662 | |
489137c0 AC |
1663 | Wed Feb 9 01:14:54 2000 Andrew Cagney <[email protected]> |
1664 | ||
1665 | * config/d10v/tm-d10v.h (NO_EXTRA_ALIGNMENT_NEEDED): Define. | |
1666 | * config/d10v/tm-d10v.h (STACK_ALIGN): Define. | |
1667 | (d10v_stack_align): Declare. | |
1668 | * d10v-tdep.c (d10v_stack_align): Define. | |
1669 | ||
ce808e91 AC |
1670 | 1999-08-23 J.T. Conklin <[email protected]> |
1671 | ||
7b83ea04 AC |
1672 | * top.c (remote_timeout): Change default to 2. Add comment |
1673 | explaining history of changes to the default value. | |
1674 | * remote.c (_initialize_remote): Remove code that adds set/ | |
1675 | show remotetimeout, as that's also done in top.c | |
ce808e91 | 1676 | |
e9277ae8 AC |
1677 | 1999-10-18 J.T. Conklin <[email protected]> |
1678 | ||
7b83ea04 AC |
1679 | * m32r-stub.c, sparcl-stub.c, sparclet-stub.c (handle_exception): |
1680 | Return E01 instead of P01 when 'P' command fails. | |
e9277ae8 | 1681 | |
1216fa2c AC |
1682 | 2000-02-05 J.T. Conklin <[email protected]> |
1683 | ||
1684 | * remote.c (putpkt_binary): Handle NAK from target stub. | |
1685 | ||
f2c4d933 EZ |
1686 | 2000-02-08 Elena Zannoni <[email protected]> |
1687 | ||
1688 | * configure.in: Remove the addition of sol-thread.c to the | |
1689 | CONFIG_INITS list. This caused problems with init.c, because | |
1690 | sol-thread.c would be grepped twice for _initialize_* functions. | |
1691 | * configure: Ditto. | |
1692 | * Makefile.in: Add FIXME for init.c. | |
1693 | ||
745b8ca0 JK |
1694 | 2000-02-07 Jim Kingdon <[email protected]> |
1695 | ||
1696 | Clean up compiler warnings: | |
1697 | * bcache.h, bcache.c, c-valprint.c, coffread.c, stabsread.c, | |
1698 | stack.c, valprint.c: Change variables to unsigned. | |
1699 | * bcache.c: Rearrange to avoid warnings about variables not being set. | |
1700 | * c-lang.c, ch-lang.c, f-lang.c, m2-lang.c: Include valprint.h | |
1701 | rather than declaring print_max and repeat_count_threashold | |
1702 | ourselves (incorrectly). | |
1703 | * valprint.h: Do declare repeat_count_threashold. | |
1704 | * ch-exp.c: Use default case for internal error. | |
1705 | * findvar.c: Don't omit argument type. | |
1706 | * symtab.c: Remove unused variable. | |
1707 | ||
4d9ab7f6 JK |
1708 | 2000-02-04 Jim Blandy <[email protected]> |
1709 | ||
1710 | * c-typeprint.c (remove_qualifiers): New function. | |
1711 | (c_type_print_base): Use it to remove qualifiers from C++ | |
1712 | qualified names, not strrchr. | |
1713 | ||
1714 | * c-typeprint.c (c_type_print_base): Recognize type conversion | |
1715 | operators by calling is_type_conversion_operator. | |
1716 | (is_type_conversion_operator): New function. | |
1717 | ||
dfcd3bfb JM |
1718 | 2000-02-04 Nick Clifton <[email protected]> |
1719 | ||
1720 | * config/arm/tm-arm.h (LOWEST_PC): Define. | |
1721 | ||
1722 | 2000-02-04 Elena Zannoni <[email protected]> | |
1723 | ||
1724 | * infrun.c (resume): Make just one call to target_resume(), instead | |
7b83ea04 AC |
1725 | of four: set up correct parameters in all the cases ahead of time, |
1726 | and do call at the end. | |
dfcd3bfb JM |
1727 | |
1728 | 2000-02-04 Elena Zannoni <[email protected]> | |
1729 | ||
1730 | * config/powerpc/tm-ppc-eabi.h: Define | |
7b83ea04 | 1731 | SOFUN_ADDRESS_MAYBE_MISSING. |
dfcd3bfb JM |
1732 | |
1733 | 2000-02-04 Fernando Nasser <[email protected]> | |
1734 | ||
1735 | * arm-tdep.c (arm_pc_is_thumb_dummy): Account for large dummy | |
1736 | frames (revisited). | |
1737 | ||
1738 | Fri Feb 4 22:42:36 2000 Andrew Cagney <[email protected]> | |
1739 | ||
1740 | * Makefile.in (INIT_FILES): Append CONFIG_INITS | |
1741 | * configure.in (CONFIG_INIT): Initialize. | |
3fc11d3e JM |
1742 | (links): Link srcdir/gdbtk/library to gdbtcl2. |
1743 | * gdbtcl2: Moved to gdbtk/library. | |
1744 | ChangeLog-gdbtk, gdbtk-cmds.c, gdbtk-hooks.c, gdbtk-variable.c, | |
7b83ea04 AC |
1745 | gdbtk-varobj.c, gdbtk-wrapper.c, gdbtk-wrapper.h, gdbtk.c, |
1746 | gdbtk.h: Moved to gdbtk/generic. | |
dfcd3bfb JM |
1747 | |
1748 | 2000-02-03 Elena Zannoni <[email protected]> | |
1749 | ||
1750 | * printcmd.c (build_address_symbolic): New function. Returns all | |
7b83ea04 AC |
1751 | the parts that are necessary to print an address in a symbolic |
1752 | form. | |
dfcd3bfb | 1753 | (print_address_symbolic): Split into a printing part and an |
7b83ea04 | 1754 | information building part, build_address_symbolic(). |
dfcd3bfb JM |
1755 | |
1756 | * defs.h (build_address_symbolic): Export. | |
1757 | ||
1758 | 2000-02-03 Jim Blandy <[email protected]> | |
1759 | ||
1760 | * dwarf2read.c (decode_locdesc): Add support for the DW_OP_bregx | |
1761 | opcode. | |
1762 | ||
8b93c638 JM |
1763 | 2000-02-02 Fernando Nasser <[email protected]> |
1764 | ||
1765 | * arm-tdep.c (arm_push_arguments): Fix passing of floating point | |
1766 | arguments on dummy frames. | |
1767 | ||
1768 | 2000-02-02 Fernando Nasser <[email protected]> | |
1769 | ||
1770 | * arm-tdep.c (arm_pc_is_thumb_dummy): Account for large dummy frames. | |
1771 | (arm_pop_frame): Account fr dummy frames (as opposed to real ones). | |
1772 | ||
d9fcf2fb JM |
1773 | 2000-02-01 Elena Zannoni <[email protected]> |
1774 | ||
1775 | * remote.c (getpkt_sane): New function. It is the old getpkt(), | |
7b83ea04 | 1776 | which now returns a timeout indication. |
d9fcf2fb | 1777 | (getpkt): New function. Wrapper for getpkt_sane(), so that return |
7b83ea04 | 1778 | value can still be ignored. |
d9fcf2fb | 1779 | |
8b93c638 JM |
1780 | Tue Feb 1 18:47:31 2000 Andrew Cagney <[email protected]> |
1781 | ||
1782 | * top.c (print_gdb_version): Print ``UI_OUT'' when configured with | |
7b83ea04 | 1783 | UI_OUT. |
8b93c638 | 1784 | |
d9fcf2fb JM |
1785 | Tue Feb 1 00:17:12 2000 Andrew Cagney <[email protected]> |
1786 | ||
1787 | * ui-file.c, ui-file.h: Rename gdb-file.h, gdb-file.c. Rename | |
7b83ea04 AC |
1788 | ``struct gdb_file'' to ``struct ui_file''. Delete typedef |
1789 | GDB_FILE. | |
0729fd50 | 1790 | |
d9fcf2fb JM |
1791 | * Makefile.in: Update. |
1792 | ||
1793 | * ax-gdb.c, ax-general.c, ax.h, buildsym.c, c-lang.c, c-lang.h, | |
7b83ea04 AC |
1794 | c-typeprint.c, c-valprint.c, ch-lang.c, ch-lang.h, ch-typeprint.c, |
1795 | ch-valprint.c, command.c, command.h, convex-tdep.c, corefile.c, | |
1796 | cp-valprint.c, d10v-tdep.c, d30v-tdep.c, defs.h, expprint.c, | |
1797 | expression.h, f-lang.c, f-lang.h, f-typeprint.c, f-valprint.c, | |
1798 | frame.h, gdb-events.sh, gdb-file.c, gdb-file.h, gdbcmd.h, | |
1799 | gdbtypes.h, hppa-tdep.c, jv-lang.c, jv-lang.h, jv-typeprint.c, | |
1800 | jv-valprint.c, language.c, language.h, m2-lang.c, m2-lang.h, | |
1801 | m2-typeprint.c, m2-valprint.c, m3-nat.c, main.c, monitor.c, | |
1802 | printcmd.c, pyr-tdep.c, remote-mips.c, remote-sim.c, remote-udi.c, | |
1803 | remote.c, scm-lang.c, scm-lang.h, scm-valprint.c, ser-e7kpc.c, | |
1804 | ser-go32.c, ser-mac.c, ser-ocd.c, ser-unix.c, ser-unix.h, | |
1805 | serial.c, serial.h, stack.c, symfile.c, symmisc.c, tahoe-tdep.c, | |
1806 | target.c, target.h, top.c, top.h, typeprint.c, typeprint.h, | |
1807 | utils.c, v850ice.c, valprint.c, valprint.h, value.h, | |
1808 | config/pa/tm-hppa.h: Update. | |
8b93c638 | 1809 | * cli-out.c, cli-out.h, ui-out.c, ui-out.h, varobj.c: Update. |
d9fcf2fb | 1810 | |
da59e081 JM |
1811 | 2000-01-31 Jason Molenda ([email protected]) |
1812 | ||
a9e0ce2c JM |
1813 | * config/alpha/alpha-osf2.mh, config/alpha/alpha-osf3.mh, |
1814 | config/i386/i386dgux.mh, config/i386/i386sol2.mh, | |
1815 | config/i386/i386v4.mh, config/i386/i386v42mp.mh, | |
1816 | config/i386/ncr3000.mh, config/m68k/m68kv4.mh, | |
1817 | config/m88k/delta88v4.mh, config/mips/irix4.mh, | |
1818 | config/mips/irix5.mh, config/mips/mipsv4.mh, | |
da59e081 | 1819 | config/powerpc/solaris.mh (NATDEPFILES): Change references to |
a9e0ce2c | 1820 | proc_api.o, proc_events.o, proc_flags.o, and proc_why.o to |
da59e081 JM |
1821 | proc-api.o, proc-events.o, proc-flags.o, and proc-why.o. |
1822 | ||
1823 | Mon Jan 31 17:14:52 2000 Andrew Cagney <[email protected]> | |
1824 | ||
1825 | * top.c (fputs_unfiltered_hook): Moved to tui/tui-file.c. | |
1826 | ||
1827 | * main.c (captured_main): Only use the legacy tui_file code when | |
7b83ea04 | 1828 | linking in older code such as the TUI. |
da59e081 JM |
1829 | |
1830 | * gdb-file.h, gdb-file.c: New files. | |
1831 | * utils.c, defs.h (struct gdb_file, gdb_file_new, gdb_file_delete, | |
7b83ea04 AC |
1832 | null_file_isatty, null_file_rewind, null_file_put, |
1833 | null_file_flush, null_file_write, null_file_fputs, | |
1834 | null_file_delete, gdb_file_data, gdb_flush, gdb_file_isatty, | |
1835 | gdb_file_rewind, gdb_file_put, gdb_file_write, fputs_unfiltered, | |
1836 | set_gdb_file_flush, set_gdb_file_isatty, set_gdb_file_rewind, | |
1837 | set_gdb_file_put, set_gdb_file_write, set_gdb_file_fputs, | |
1838 | set_gdb_file_data, struct accumulated_gdb_file, | |
1839 | do_gdb_file_xstrdup, gdb_file_xstrdup, struct mem_file): | |
1840 | mem_file_new, mem_file_delete, mem_fileopen, mem_file_rewind, | |
1841 | mem_file_put, mem_file_write, struct stdio_file): stdio_file_new, | |
1842 | stdio_file_delete, stdio_file_flush, stdio_file_write, | |
1843 | stdio_file_fputs, stdio_file_isatty, stdio_fileopen, gdb_fopen): | |
1844 | Moved to gdb-file.h and gdb-file.c. | |
da59e081 | 1845 | * utils.c (enum streamtype, struct tui_stream, tui_file_new, |
7b83ea04 AC |
1846 | tui_file_delete, tui_fileopen, tui_sfileopen, tui_file_isatty, |
1847 | tui_file_rewind, tui_file_put, tui_file_fputs, | |
1848 | tui_file_get_strbuf, tui_file_adjust_strbuf, tui_file_flush, | |
da59e081 | 1849 | fputs_unfiltered_hook): |
7b83ea04 | 1850 | Moved to tui/tui-file.c and tui/tui-file.h. |
0729fd50 | 1851 | |
da59e081 JM |
1852 | * Makefile.in (COMMON_OBS): Add gdb-file.o, tui-file.o. |
1853 | (tui-file.o, gdb-file.o): Add dependencies. | |
1854 | (corefile.o, main.o, utils.o, simmisc.o): Update dependencies. | |
1855 | * main.c: #include tui/tui-file.h. | |
1856 | ||
1857 | 2000-01-28 Fred Fish <[email protected]> | |
1858 | ||
1859 | * findvar.c (value_from_register): Special case handling of D10V | |
1860 | pointer values fetched from registers. | |
1861 | ||
1862 | 2000-01-28 Fernando Nasser <[email protected]> | |
1863 | ||
1864 | * arm-tdep.c (thumb_skip_prologue, thumb_scan_prologue): Add | |
b55cf2e4 | 1865 | support for new style thumb prologues. |
da59e081 JM |
1866 | |
1867 | 2000-01-28 Nick Clifton <[email protected]> | |
1868 | ||
1869 | * arm-tdep.c: Remove extraneous dash at start of strings | |
1870 | introduced in previous delta. | |
1871 | ||
1872 | 2000-01-27 Nick Clifton <[email protected]> | |
1873 | ||
1874 | * arm-tdep.c: Replace uses of arm_toggle_renames() with | |
b55cf2e4 | 1875 | parse_arm_disassembler_option(). |
da59e081 JM |
1876 | |
1877 | 2000-01-27 Jim Blandy <[email protected]> | |
1878 | ||
1879 | * symtab.c (decode_line_1): Don't let commas that are within | |
7b83ea04 AC |
1880 | quotes or parenthesis terminate the line spec. Don't use pp when |
1881 | removing the final double quote of a double-quoted string. Don't | |
1882 | forget to skip the opening double quote. I have no clue whether | |
1883 | this change is correct; probably we've just moved this function | |
1884 | from one buggy place to another buggy place, and never came within | |
1885 | an outhouse whiff of correctness. | |
da59e081 JM |
1886 | (find_toplevel_char): New function. |
1887 | ||
1888 | 2000-01-27 Fernando Nasser <[email protected]> | |
1889 | ||
1890 | * arm-tdep.c (arm_push_arguments): Set the thumb mode bit when | |
7b83ea04 | 1891 | passing the pointer to a thumb function as an argument. |
da59e081 JM |
1892 | |
1893 | 2000-01-27 Fernando Nasser <[email protected]> | |
1894 | ||
1895 | * remote-rdi.c (arm_rdi_mourn_inferior): Make sure breakpoints | |
1896 | are reinserted for another run. | |
1897 | ||
8b93c638 JM |
1898 | 2000-01-27 Fernando Nasser <[email protected]> |
1899 | ||
1900 | * cli-out.c (cli_filed_string): Test for NULL string. | |
1901 | ||
da59e081 JM |
1902 | 2000-01-27 Fernando Nasser <[email protected]> |
1903 | ||
1904 | * infcmd.c (run_stack_dummy): Account for a random signal stopping | |
1905 | the inferior as well as breakpoints being hit while performing an | |
1906 | inferior function call. | |
1907 | * valops.c (hand_function_call): Ditto. | |
1908 | ||
1909 | 2000-01-27 Elena Zannoni <[email protected]> | |
1910 | ||
1911 | From Mark Kettenis <[email protected]> | |
1912 | ||
1913 | * config/i386/tm-i386gnu.h (THREAD_STATE_FLAVOR): Define to | |
1914 | i386_REGS_SEGS_STATE. | |
1915 | (HAVE_I387_REGS): Define. | |
1916 | (FLOAT_INFO): Remove. | |
1917 | * i386gnu-nat.c: Almost completely rewritten to use new i386 | |
1918 | register layout and `float info' implementation. | |
1919 | * gnu-nat.c (inf_update_procs, proc_get_state, proc_string): | |
1920 | Move prototypes from here. | |
1921 | * gnu-nat.h: To here. | |
1922 | ||
0fda6bd2 JM |
1923 | 2000-01-24 Kevin Buettner <[email protected]> |
1924 | ||
1925 | * utils.c (get_field, put_field): Fix buffer underruns and | |
1926 | overruns. Also, handle case where total_len is not evenly | |
1927 | divisible by 8. | |
1928 | (getfield): Make sure zeroing of unwanted bits occurs even | |
1929 | when bit field to extract does not straddle two or more | |
1930 | bytes. | |
1931 | ||
1932 | 2000-01-23 Christopher Faylor <[email protected]> | |
1933 | ||
1934 | * defs.h: Add gdb_thread_select declaration. | |
1935 | ||
1936 | 2000-01-23 Kevin Buettner <[email protected]> | |
1937 | ||
1938 | * linux-thread.c (_initialize_linuxthreads): Make sure that | |
1939 | linuxthreads_block_mask does not block SIGCHLD. | |
1940 | ||
1941 | 2000-01-20 Fernando Nasser <[email protected]> | |
1942 | ||
1943 | * rdi-share/devsw.c (openLogFile): On cygwin, set the log mode to | |
1944 | text so that new lines work properly. | |
1945 | ||
1946 | 2000-01-18 Elena Zannoni <[email protected]> | |
1947 | ||
1948 | * proc-utils.h: New file. Export functions from proc-*.c. | |
1949 | ||
1950 | * proc_api.c: Rename to: | |
1951 | * proc-api.c: New file. Add include of proc-utils.h. | |
1952 | ||
1953 | * proc_events.c: Rename to: | |
1954 | * proc-events.c: New file. | |
1955 | ||
1956 | * proc_flags.c: Rename to: | |
1957 | * proc-flags.c: New file. | |
1958 | ||
1959 | * proc_why.c: Rename to: | |
1960 | * proc-why.c: New file. Add include of proc-utils.h. | |
1961 | ||
1962 | * procfs.c: Add includes of gdbthread.h, sys/wait.h, signal.h, | |
7b83ea04 | 1963 | ctype.h, proc-utils.h. |
0fda6bd2 JM |
1964 | (find_procinfo_or_die): Add braces to avoid ambiguous else clause. |
1965 | (open_procinfo_files): Conditionalize local variable tmp, to avoid | |
7b83ea04 | 1966 | compiler warnings. |
0fda6bd2 | 1967 | (proc_iterate_over_mappings): Conditionalize local vars mapfd and |
7b83ea04 | 1968 | pathname. |
0fda6bd2 | 1969 | (procfs_wait): Adjust format in some printf_filetered calls to |
7b83ea04 | 1970 | avoid compiler warnings. |
0fda6bd2 | 1971 | (make_signal_thread_runnable): Ifdef 0. The calls to this function |
7b83ea04 | 1972 | are also ifdef'd 0 . |
0fda6bd2 JM |
1973 | (procfs_resume): Add parentheses around '&&' operation. |
1974 | (procfs_set_exec_trap): Remove unused variable. | |
1975 | (info_proc_cmd): Add braces to avoid ambiguous else clause. | |
1976 | ||
1977 | * Makefile.in (procfs.o, proc-api.o, proc-events.o, proc-flags.o, | |
7b83ea04 | 1978 | proc-why.o): Update dependencies. |
0fda6bd2 JM |
1979 | |
1980 | * config/sparc/sun4sol2.mh (NATDEPFILES): Change proc_*.o files to | |
1981 | proc-*.o. | |
1982 | ||
c5394b80 JM |
1983 | 2000-01-17 Jason Molenda ([email protected]) |
1984 | ||
1985 | * configure.in (NEW_PROC_API): Fix Unixware-matching regexp. | |
1986 | Fix from Robert Lipe <[email protected]>. | |
1987 | * configure: Regenerated. | |
1988 | ||
1989 | 2000-01-17 Elena Zannoni <[email protected]> | |
1990 | ||
1991 | * stack.c (print_frame_info_base): Break up into the frame info | |
7b83ea04 | 1992 | (location) printing part and the rest (source line printing). |
c5394b80 | 1993 | (print_frame): New function. Take care of printing the location |
7b83ea04 | 1994 | information. |
c5394b80 JM |
1995 | Update copyright. |
1996 | ||
1997 | * infrun.c (normal_stop): Use enum values rather than integers for the | |
1998 | source_flag to be passed to show_and_print_stack_frame(). | |
7b83ea04 | 1999 | Update copyright. |
0729fd50 | 2000 | |
c5394b80 | 2001 | * frame.h (print_what): New enum for 'source' argument to |
7b83ea04 | 2002 | print_frame_info_base(). Use this instead of obscure numbers. |
c5394b80 | 2003 | Update copyright. |
0729fd50 | 2004 | |
c5394b80 JM |
2005 | Sun Jan 16 17:58:00 2000 David Taylor <[email protected]> |
2006 | ||
2007 | * event-top.c (stdin_event_handler): call quit_command rather than | |
7b83ea04 AC |
2008 | exit -- run cleanups, give target code a chance to say goodbye to |
2009 | the target. Fixes bug where the inferior processes were left | |
2010 | around on Solaris (and probably elsewhere) by the testsuite. | |
c5394b80 JM |
2011 | |
2012 | 2000-01-14 Mark Salter <[email protected]> | |
2013 | ||
2014 | * v850-tdep.c (v850_target_architecture_hook): Setup correct | |
7b83ea04 | 2015 | machine id for disassembly. |
c5394b80 | 2016 | |
0fda6bd2 JM |
2017 | 2000-01-13 Jim Blandy <[email protected]> |
2018 | ||
2019 | * i386-linux-nat.c (fill_gregset): Pass the correct arguments to | |
2020 | convert_to_regset, when regno indicates a specific register. | |
2021 | ||
c5394b80 JM |
2022 | Thu Jan 13 23:34:17 EST 2000 Nicholas Duffek <[email protected]> |
2023 | ||
2024 | * uw-thread.c: Document libthread.so debugging interface. Minor | |
2025 | comment and formatting tweaks. | |
2026 | (DEBUG): #define as 0 instead of 1. | |
2027 | (CALL_BASE): Include function name in error msg. | |
2028 | (libthread_stub): Adjust inferior_pid after thread exit. | |
2029 | (uw_thread_create_inferior): Deactivate uw_thread_ops before | |
2030 | asking procfs_ops to create inferior. | |
2031 | (libthread_init): Don't return nonlocally on error. | |
2032 | ||
2033 | 2000-01-12 Fernando Nasser <[email protected]> | |
2034 | ||
2035 | * rdi-share/ardi.c (negotiate_params): Fix initialization of static | |
2036 | variable. | |
2037 | ||
2038 | 2000-01-12 Fernando Nasser <[email protected]> | |
2039 | ||
2040 | * remote-rdi.c (arm_rdi_open): Call arm-rdi-close() to make sure | |
2041 | both sides are on the same state. | |
2042 | ||
2043 | 2000-01-12 Fernando Nasser <[email protected]> | |
2044 | ||
2045 | * rdi-share/serdrv.c (find_baud_rate): Fix entries for 57600 and | |
2046 | 115200 (minor syntax mistake). | |
2047 | ||
2048 | 2000-01-12 Jim Blandy <[email protected]> | |
2049 | ||
2050 | * config/sparc/tm-sun4sol2.h (MERGEPID): Provide a definition for | |
2051 | this here, to go along with the definitions of PIDGET and TIDGET. | |
2052 | ||
2053 | 2000-01-12 Elena Zannoni <[email protected]> | |
2054 | ||
2055 | * thread.c (do_captured_thread_select): New function. Switch | |
7b83ea04 | 2056 | current thread, safely from within catch_errors(). |
c5394b80 JM |
2057 | (gdb_thread_select): New function. Switch threads safely. |
2058 | (thread_command): Use gdb_thread_select(). | |
8b93c638 JM |
2059 | Include ui-out.h. |
2060 | (do_captured_list_thread_ids): New function. | |
2061 | (gdb_list_thread_ids): New function. | |
2062 | ||
2063 | * defs.h (gdb_thread_select, gdb_list_thread_ids): Export. | |
c5394b80 JM |
2064 | |
2065 | 2000-01-11 Christopher Faylor <[email protected]> | |
2066 | ||
2067 | * configure.in: Avoid linking -limagehlp unless it's a native build. | |
2068 | * configure: Regenerate. | |
2069 | * thread.cc (add_thread): Clear private data pointer here or suffer | |
2070 | strange behavior when it is checked for NULL later. | |
2071 | ||
0d06e24b JM |
2072 | 2000-01-09 Christopher Faylor <[email protected]> |
2073 | ||
2074 | * win32nat.c (handle_exceptions): Handle various arithmetic exceptions. | |
2075 | * configure.in: Add an additional library to cygwin link. | |
2076 | * configure: Regenerate. | |
2077 | ||
2078 | Patch from Egor Duda <[email protected]>: | |
2079 | * coffread.c (coff_symfile_read): Reinstate ability to recognize "pe" | |
2080 | type. | |
2081 | ||
2082 | 2000-01-07 Michael Snyder <[email protected]> | |
2083 | ||
2084 | * uw-thread.c: New file to support UnixWare user-mode threads: | |
aa47baa9 | 2085 | contributed by Nickolas Duffek <[email protected]>. |
0d06e24b JM |
2086 | * target.h (struct target_ops): New vector, to_extra_thread_info, |
2087 | allows back-ends to give extra details in info thread display. | |
2088 | (target_extra_thread_info): define new macro. | |
2089 | (target_find_new_threads): simplify macro. Cleanup comments. | |
2090 | * target.c (to_extra_thread_info): default and inherit new vector. | |
2091 | (cleanup_target): eliminate PARAMS, break up long lines, | |
2092 | provide default definition for to_extra_thread_info, and | |
2093 | to_find_new_threads. Default to_thread_alive and to_query | |
2094 | to return_zero, not target_ignore (they each return int not void). | |
2095 | (debug_to_find_new_threads): new debug entry. | |
2096 | (setup_target_debug): add debug_to_find_new_threads. | |
2097 | * gdbthread.h: export struct thread_info, find_thread_pid, and | |
2098 | iterate_over_threads. Add comments. Eliminate PARAMS. Update | |
2099 | copyright. Add new private data pointer for use by target back-ends. | |
2100 | * thread.c (struct thread_info): move definition to gdbthread.h. | |
2101 | (find_thread_pid): new exported function for thread lookup. | |
2b266721 | 2102 | (iterate_over_threads): new exported function for applying |
0d06e24b JM |
2103 | arbitrary operations to threads. Update copyright to 2000. |
2104 | (info_threads_command): use new target_extra_thread_info vector | |
2105 | to display extra information about each thread (if implemented). | |
2106 | * config/i386/tm-i386v42mp.h: remove obsolete #defines for procfs. | |
2107 | Add defines for PIDGET, etc. | |
2108 | * config/i386/tm-i386sol2.h: ditto. | |
2109 | * config/sparc/tm-sun4sol2.h: ditto. | |
2110 | * config/i386/i386v42mp.mh: add uw-thread.o to NATDEPFILES. | |
2111 | * testsuite/gdb.threads/pthreads.exp: Try to link with -lthread | |
2112 | if -lpthread and -lpthreads fail. | |
2113 | ||
2114 | * procfs.c: (PIDGET, TIDGET, MERGEPID): change default to no-op. | |
2115 | (proc_flags): combine flags that UnixWare splits into two locations. | |
2116 | (proc_modify_flag): add support for PR_KLC (kill on last close). | |
2117 | (proc_[un]set_kill_on_last_close): new functions. | |
0729fd50 | 2118 | |
8b93c638 JM |
2119 | 2000-01-07 Elena Zannoni <[email protected]> |
2120 | ||
2121 | * infrun.c (normal_stop): Print out thread id when we stop. | |
2122 | ||
0d06e24b JM |
2123 | 2000-01-06 Fernando Nasser <[email protected]> |
2124 | ||
2125 | * remote.c (remote_open_1): Fix message so it does not imply a | |
2b266721 | 2126 | specific syntax for serial ports, as it is OS dependent. |
0d06e24b JM |
2127 | (remote_async_open_1): Ibid. |
2128 | (init_remote_ops): Ibid. | |
2129 | ||
2130 | 2000-01-06 Fernando Nasser <[email protected]> | |
2131 | ||
2132 | * rdi-share/serdrv.c (SerialOpen): Use speed from "-b" argument or | |
2133 | "set remotebaud" command (if set) when no speed is specified on | |
2134 | the "target rdi" command. | |
2135 | ||
2136 | 2000-01-06 Fernando Nasser <[email protected]> | |
2137 | ||
2138 | * rdi-share/serdrv.c (find_baud_rate): Add entries for 57600 and | |
2139 | 115200. | |
2140 | (baud_options[]): Ibid. | |
2141 | ||
2142 | 2000-01-06 Fernando Nasser <[email protected]> | |
2143 | ||
2144 | * rdi-share/unixcomm.c: Fix SERIAL_PREFIX so it matches the prefix | |
2145 | used by each operating system. | |
2146 | ||
2147 | 2000-01-06 Elena Zannoni <[email protected]> | |
2148 | ||
2149 | * breakpoint.c (until_break_command): Add an argument for the | |
7b83ea04 AC |
2150 | continuation, the beginning of the cleanups set up by this |
2151 | command. | |
0d06e24b | 2152 | (until_break_command_continuation): Do cleanups until the one |
7b83ea04 | 2153 | passed in as argument instead of doing all of them. |
0d06e24b JM |
2154 | |
2155 | * infcmd.c (finish_command_continuation): Expect a new argument, | |
7b83ea04 AC |
2156 | which indicates up to where to do cleanups. Update calls to |
2157 | do_exec_cleanups to use this marker, instead of ALL_CLEANUPS. | |
0d06e24b JM |
2158 | (finish_command): Add another argument for the continuation: the |
2159 | starting cleanup for this command. | |
2160 | ||
c3f6f71d | 2161 | 2000-01-05 Fernando Nasser <[email protected]> |
ed9a39eb | 2162 | |
c3f6f71d JM |
2163 | From Grant Edwards <[email protected]> (original patch from Thomas |
2164 | Zenker ): | |
2165 | * rdi-share/ardi.c: Allow interruption of interruptible | |
2166 | targets with a <CNTL-C>. | |
ed9a39eb | 2167 | |
c3f6f71d | 2168 | 2000-01-04 Fernando Nasser <[email protected]> |
ed9a39eb | 2169 | |
c3f6f71d JM |
2170 | * rdi-share/etherdrv.c (fetch_ports): Send extra words on request |
2171 | to control port to accommodate some versions of Angel. | |
ed9a39eb | 2172 | |
c3f6f71d | 2173 | 2000-01-04 Fernando Nasser <[email protected]> |
ed9a39eb | 2174 | |
c3f6f71d JM |
2175 | * rdi-share/devsw.c (dumpPacket): Fix source of channel information. |
2176 | Add interpretation for C Support Library packets. | |
ed9a39eb | 2177 | |
c3f6f71d | 2178 | 2000-01-04 Fernando Nasser <[email protected]> |
ed9a39eb | 2179 | |
c3f6f71d JM |
2180 | * rdi-share/devsw.c (DevSW_Close): Remove const from argument that |
2181 | is now being modified. | |
2182 | * rdi-share/devsw.h: Adjust declaration of the above funtion. | |
ed9a39eb | 2183 | |
c3f6f71d | 2184 | For older changes see ChangeLog-99 |
c906108c SS |
2185 | \f |
2186 | Local Variables: | |
2187 | mode: change-log | |
2188 | left-margin: 8 | |
2189 | fill-column: 74 | |
2190 | version-control: never | |
2191 | End: |