]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/ChangeLog-gdbtk
This is the merge of the Itcl3.0 gdbtk development branch into the
[thirdparty/binutils-gdb.git] / gdb / ChangeLog-gdbtk
1 M1999-01-27 James Ingham <jingham@cygnus.com>
2
3 Merging in changes from gdbtk-980810 - the Itcl3
4 gdb branch.
5
6 1999-01-12 Martin Hunt <hunt@cygnus.com>
7
8 * gdbtk-cmds.c (gdb_loadfile): Increase maximum line size so
9 files with very long lines get numbered correctly.
10
11 Thu Jan 7 06:50:32 1999 Keith Seitz <keiths@cygnus.com>
12
13 * gdbtk-hooks.c (gdbtk_add_hooks): Add the error_begin_hook;
14 (gdbtk_error_begin): New function.
15 (gdbtk_fputs): If GDBTK_ERROR_ONLY is set, treat output to
16 any stream as if it had come from gdb_stderr.
17
18 * gdbtk.h: Define GDBTK_SYMBOL_SOURCE_NAME: does the same thing
19 as SYMBOL_SOURCE_NAME, except that it NEVER returns a mangled name.
20 Define GDBTK_ERROR_ONLY flag for result_ptr.
21
22 * gdbtk-cmds.c (gdb_listfuncs): Use SYMBOL_DEMANGLED_NAME to
23 get the symbol's fully demangled name (including class and
24 args for overloaded funcs), not cplus_demangle.
25 (get_frame_name): Use GDBTK_SYMBOL_SOURCE_NAME to get the name
26 of the frame level.
27
28 * gdbtk-wrapper.c, gdbtk-wrapper.h:
29 (GDB_val_print): Allow caller to specify all function args to val_print.
30 (wrap_val_print): Ditto.
31
32 * gdbtk-variable.c (variable_value): Clear addressprint when getting
33 value of C++ reference-type variables
34 If we errored because a parent (struct pointer) was junk, output
35 an error message indicating so.
36 (call_gdb_val_print): Tell val_print to dereference C++ reference
37 types.
38 (number_of_children): void * also has no children.
39 (get_call_output): Clear any error flags that may have been set
40 as a result of error_begin.
41
42 * utils.c (error_begin_hook): New hook.
43 (error_begin): Call error_begin_hook so that the GUI
44 gets notified.
45
46 * defs.h (error_begin_hook): Declare.
47
48 Wed Jan 6 08:43:31 1999 Keith Seitz <keiths@cygnus.com>
49
50 * gdbtk-wrapper.c, gdbtk-wrapper.h: Add wrappers for parse_exp_1,
51 evaluate_type, block_for_pc, block_innermost_frame, reinit_frame_cache,
52 and find_frame_addr_in_frame_chain.
53
54 * gdbtk-variable.c (variable_create): Check for failure when
55 creating variables.
56 (create_variable): Use wrapped calls for block_for_pc, parse_exp_1,
57 and block_innermost_frame.
58 Return NULL if parse_exp_1 fails.
59 Attempt to prohibit creating a gdb_variable for type names.
60 (variable_value_changed): Use wrapped calls for reinit_frame_cache and
61 find_frame_addr_in_frame_chain.
62 (variable_type): Use wrapped call for evaluate_type.
63 (variable_value): Use wrapped call for parse_exp_1.
64 (variable_editable): Use wrapped call for evaluate_type.
65
66 Tue Jan 5 11:37:17 1999 Keith Seitz <keiths@cygnus.com>
67
68 * gdbtk-variable.c: New variable object interface.
69 * gdbtk-wrapper.c, gdbtk-wrapper.h: New wrappers for safely calling
70 gdb functions without the fear of longjmp'ing.
71 * configure.in (CONFIG_OBS): Add gdbtk-wrapper.o and gdbtk-variable.o
72 when gdbtk is enabled.
73 * configure: Regenerate.
74 * Makefile.in: Add gdbtk-wrapper.o and gdbtk-variable.o
75 * gdbtk-cmds.c (call_wrapper): Export so that other files can use.
76 (Gdbtk_Init): Initialize new variable interface.
77 * gdbtk.h: Add declaration for call_wrapper.
78
79 Tue Jan 5 11:19:14 1999 Keith Seitz <keiths@cygnus.com>
80
81 * gdbtk-cmds.c (gdb_loc): Call resolve_sal_pc to before using
82 the sal's pc.
83
84 * gdbtk.c (gdbtk_init): Add global array GDBStartup to interpreter
85 which contains any startup info. Add "inhibit_prefs" (follows -nx)
86 so that "-nx" turns preference reading/writing off.
87
88 Mon Dec 21 11:11:02 1998 Keith Seitz <keiths@cygnus.com>
89
90 * gdbtk-cmds.c (get_register): Call get_saved_register instead of
91 read_relative_register_raw_bytes to fetch registers.
92
93 Thu Dec 17 09:00:56 1998 Keith Seitz <keiths@cygnus.com>
94
95 * gdbtk-cmds.c (gdb_search): Don't mention C++ RTTI and
96 global constructor/destructor symbols.
97
98 Thu Nov 12 15:20:15 1998 Jim Ingham <jingham@cygnus.com>
99 * More bug fixes merged in from devo.
100
101 * gdbtk-cmds.c (gdb_cmd): Added an optional second argument to the
102 gdb_cmd, which is from_tty. This is passed to the gdb command
103 parser. It is 0 by default, and the console window passes 1.
104
105 * gdbtk-cmds.c: moved disassemble_from_exec from gdbtk.c to gdbtk-cmds.c
106 with all the other link-var'ed variables
107
108 * gdbtk-hooks.c (gdbtk_trace_find): Only run the hook functions if
109 we are called from_tty.
110
111 * gdbtk-hooks.c (gdbtk_trace_start_stop): Set the trace buttons
112 from a trace_start_command callback rather than doing it as a
113 special case in gdb_cmd.
114
115 * tracepoint.c (tstart_command, tstop_command): Add call to
116 trace_start_stop_hook here.
117
118 1998-11-04 Martin M. Hunt <hunt@cygnus.com>
119
120 * gdbtk-cmds.c (gdb_set_bp_addr): For callback, send full
121 pathname instead of just basename.
122
123 1998-11-03 Keith Seitz <keiths@cygnus.com>
124 * v850ice.c (do_gdb): New function.
125 (ice_stepi): Use do_gdb to step properly.
126 (ice_nexti): Use do_gdb to step properly.
127 (view_source): Correct call to src window's location for new version.
128
129 Tue Aug 25 18:13:30 1998 Jim Ingham <jingham@cygnus.com>
130
131 * gdbtk.c (gdbtk_init): I hadn't excised ALL the old startup code,
132 so it was not working correctly. Now it does.
133
134 Fri Aug 21 14:37:40 1998 Jim Ingham <jingham@cygnus.com>
135
136 * gdbtk.c (gdbtk_init): Changed the startup code to use
137 tcl_findLibrary
138
139
140
141
142 on Dec 28 17:44:36 1998 David Taylor <taylor@texas.cygnus.com>
143
144
145 The following changes were made by Jim Blandy <jimb@cygnus.com>,
146 Edith Epstein <eepstein@cygnus.com>, Elena Zannoni
147 <ezannoni@cygnus.com> Stan Shebs <shebs@cygnus.com>, and David
148 Taylor <taylor@cygnus.com>, as part of the project to merge in
149 changes originally made by HP; HP did not create ChangeLog
150 entries.
151
152 * gdbtk.c (gdbtk_init): change stderr to gdb_stderr.
153
154 * gdbtk-cmds.c
155 (get_pc_register): Use paddr_nz, not sprintf's %llx and
156 a cast to `long long'. Those aren't portable.
157 (gdb_eval): add embedded_offset param to val_print call
158 (get_register): add embedded_offset param to val_print call
159
160 * gdbtk-hooks.c
161 (tk_command_loop): change instream to a FILE.
162 (gdbtk_flush): change both the declaration and definition to
163 use GDB_FILE rather than FILE.
164
165 Mon Dec 21 11:11:02 1998 Keith Seitz <keiths@cygnus.com>
166
167 * gdbtk-cmds.c (get_register): Call get_saved_register instead of
168 read_relative_register_raw_bytes to fetch registers.
169
170 Thu Dec 17 09:00:56 1998 Keith Seitz <keiths@cygnus.com>
171
172 * gdbtk-cmds.c (gdb_search): Don't mention C++ RTTI and
173 global constructor/destructor symbols.
174
175 Tue Dec 15 10:09:31 1998 Andrew Cagney <cagney@b1.cygnus.com>
176
177 * gdbtk-cmds.c (gdb_disassemble): Fix typo.
178
179 Sun Dec 13 09:52:51 1998 Andrew Cagney <cagney@b1.cygnus.com>
180
181 * gdbtk-cmds.c: Update TARGET_PRINT_INSN_INFO, TARGET_PRINT_INSN.
182
183 Fri Dec 11 09:52:04 1998 Andrew Cagney <cagney@chook>
184
185 * gdbtk-cmds.c: Replace reg_name with REGISTER_NAME.
186
187 Mon Dec 14 13:20:50 1998 Jim Ingham <jingham@cygnus.com>
188
189 * Makefile.in, configure.in configure - add support for LIBGUI
190 outside the IDE context.
191
192 Thu Nov 19 13:14:57 1998 Geoffrey Noer <noer@cygnus.com>
193
194 * gdbtk-cmds.c: Can't start using new API names yet. Switch back
195 to calling cygwin32_ funcs until some time has passed...
196 * gdbtk.c: Ditto. Also, include sys/cygwin.h for Cygwin, instead
197 of providing own proto.
198
199 Fri Nov 13 00:15:08 1998 Geoffrey Noer <noer@cygnus.com>
200
201 Changes to account for name change from cygwin32 to cygwin and
202 clean up Win32-related ifdefs.
203
204 * gdbtk.c: lose "32" from cygwin_ func calls. ifndef for
205 checking DISPLAY should be for _WIN32, not WINNT.
206 * gdbtk.h: pick GDBTK_PATH_SEP based on _WIN32, not WINNT.
207 * gdbtk-cmds.c (gdb_path_conv): lose "32" from cygwin_ func call,
208 change ifdef to __CYGWIN32__ instead of WINNT.
209 * {gdbtk.c, gdbtk-hooks.c}: __CYGWIN32__ refs drop the "32".
210
211 Thu Nov 12 15:20:15 1998 Jim Ingham <jingham@cygnus.com>
212
213 * gdbtk-cmds.c (gdb_cmd): Added an optional second argument to the
214 gdb_cmd, which is from_tty. This is passed to the gdb command
215 parser. It is 0 by default, and the console window passes 1.
216
217 * gdbtk-cmds.c: moved disassemble_from_exec from gdbtk.c to gdbtk-cmds.c
218 with all the other link-var'ed variables
219
220 * gdbtk-hooks.c (gdbtk_trace_find): Only run the hook functions if
221 we are called from_tty.
222
223 * gdbtk-hooks.c (gdbtk_trace_start_stop): Set the trace buttons
224 from a trace_start_command callback rather than doing it as a
225 special case in gdb_cmd.
226
227 * tracepoint.c (tstart_command, tstop_command): Add call to
228 trace_start_stop_hook here.
229
230 Wed Nov 4 12:41:42 1998 Jim Ingham <jingham@cygnus.com>
231
232 * gdbtk-cmds.c (gdb_set_bp_addr): Pass the type, enable & thread
233 to gdbtk_tcl_breakpoint.
234 * gdbtk-hooks.c (gdbtk_trace_find): Added this function. It is
235 the hook function for tfind commands.
236 * tracepoint.c (trace_find_command): Added the trace_find_hook,
237 run when you do trace_find_command.
238 * tracepoint.h: Define the trace_find_hook.
239
240 1998-11-03 Keith Seitz <keiths@cygnus.com>
241
242 * v850ice.c (do_gdb): New function.
243 (ice_stepi): Use do_gdb to step properly.
244 (ice_nexti): Use do_gdb to step properly.
245 (view_source): Correct call to src window's location for new version.
246
247 Mon Nov 2 11:16:10 1998 Jim Ingham <jingham@cygnus.com>
248
249 * gdbtk-cmds (gdb_get_tracepoint_info): Demangle C++ function names.
250
251 Fri Oct 30 11:22:23 1998 Jim Ingham <jingham@cygnus.com>
252
253 * gdbtk-cmds (gdb_get_tracepoint_info): Fixed typo.
254
255 Wed Oct 28 16:19:02 1998 Martin M. Hunt <hunt@cygnus.com>
256
257 * gdbtk-cmds.c (gdb_set_bp_addr): For callback, send full
258 pathname instead of just basename.
259
260 Wed Oct 28 10:14:33 1998 Jim Ingham <jingham@cygnus.com>
261
262 * gdbtk-cmds.c: Made the bdtypes & bpdisp arrays shared so they
263 could be used in gdbtk-hooks.c (breakpoint_notify).
264 Also fixed a few error messages to actually print the bp number
265 rather that #%d...
266 * gdbtk-hooks.c (breakpoint_notify): pass more of the information
267 about the breakpoint into the Tcl command, so it does not have to
268 try and guess about information we have on the C side.
269 * gdbtk.h: Export the bptypes & pbdisp arrays.
270
271 1998-10-13 Jason Molenda (jsm@bugshack.cygnus.com)
272
273 * gdbtk.c, gdbtk-cmds.c: Cast parameters passed to make_cleanup to
274 use the new make_cleanup_func typedef.
275
276 1998-10-08 Keith Seitz <keiths@cygnus.com>
277
278 * gdbtk-hooks.c (gdbtk_add_hooks): Install a hook for
279 (new) file_changed_hook.
280 (gdbtk_exec_file_changed): Rename to gdbtk_exec_file_display
281 to mimic hook's name.
282 (gdbtk_file_changed): New hook function.
283
284 Tue Oct 6 22:57:13 1998 Andrew Cagney <cagney@b1.cygnus.com>
285
286 * configure.in (links): Link gdbtcl2 directory instead of gdbtcl.
287
288 Mon Oct 5 00:34:00 1998 Martin M. Hunt <hunt@cygnus.com>
289
290 * gdbtk-cmds.c (gdb_set_bp_addr): New command. Sets a
291 breakpoint at an address. Use this instead of gdb_cmd "break"
292 because the syntax of the break command is broken and doesn't
293 allow you to create a thread-specific BP at an address. Also
294 this is faster.
295
296 Sun Oct 4 22:35:47 1998 Martin M. Hunt <hunt@cygnus.com>
297
298 * gdbtk-cmds.c (gdb_set_bp): Add an optional thread number.
299 (gdb_find_bp_at_line): New function. Returns a list of bpnums
300 at the specified line number.
301 (gdb_find_bp_at_addr): New function. Returns a list of bpnums
302 at an address..
303
304 1998-10-02 Keith Seitz <keiths@cygnus.com>
305
306 * gdbtk-hooks.c (gdbtk_exec_file_changed): New function which handles
307 exec_file changes.
308 (gdbtk_add_hooks): Define exec_file_display_hook (to gdbtk_exec_file_changed)
309
310 * gdbtk-cmds.c (gdb_stop): target_stop is ALWAYS defined, so
311 compare against something a little more meaningful (target_ignore).
312
313 1998-09-24 Keith Seitz <keiths@cygnus.com>
314
315 * gdbtk.c (gdbtk_wait): Don't run the timer for ice targets.
316
317 * v850ice.c (WM_ADDR_TO_SYM): New message.
318 (v850ice_wndproc): Add handler for WM_SOURCE.
319 (v850ice_wait): Call the ui_loop_hook occasionally.
320 (ice_cont): Acknowledge message before doing anything.
321 (ice_stepi): Ack message and let gdbtk do stepping.
322 (ice_nexti): Ack message and let gdbtk do stepping.
323 (view_source): New function ICE calls to display source code.
324
325 start-sanitize-ide
326 Mon Sep 21 13:33:27 1998 Drew Moseley <dmoseley@cygnus.com>
327
328 * Makefile.in: Added sanitize markers around IDE code
329 * configure.in (host_libs): Added sanitize markers around IDE code
330 * configure: Regenerated configure from configure.in
331
332 end-sanitize-ide
333 1998-09-18 Keith Seitz <keiths@cygnus.com>
334
335 * gdbtk-cmds.c (get_frame_name): Demangle function names, too.
336
337 Thu Sep 10 22:10:29 1998 Jim Ingham <jingham@cygnus.com>
338
339 *gdbtk-cmds.c (gdb_disassemble): Make sure the symtab's linetable is not
340 null before trying to use it...
341
342 1998-09-02 Keith Seitz <keiths@cygnus.com>
343
344 * gdbtk-cmds.c (gdb_cmd): Do not run the timer when downloading --
345 the ui_progress_hook that has been installed will actually
346 update the gui for us.
347
348 Mon Aug 31 15:42:10 1998 Tom Tromey <tromey@cygnus.com>
349
350 * gdbtk-hooks.c (context_hook): Don't define.
351
352 1998-08-31 Keith Seitz <keiths@cygnus.com>
353
354 * gdbtk-cmds.c (gdb_listfuncs): When stripping out "global destructors"
355 and "global constructors", do not append any elements to the result.
356
357 Sun Aug 30 00:49:18 1998 Martin M. Hunt <hunt@cygnus.com>
358
359 * gdbtk-cmds.c (Gdbtk_Init): Link C variable gdb_context
360 with tcl variable gdb_context_id.
361
362 * gdbtk-hooks.c (gdbtk_context_change): Implement new hook called
363 context_hook. Called when threads change.
364
365 * gdbtk.c: Initialize gdb_context.
366
367 * gdbtk.h: Declare gdb_context.
368
369 * infrun (wait_for_inferior): Call context_hook.
370
371 * thread.c (thread_command): Call context_hook.
372
373 * defs.h: Declare context_hook.
374
375 Fri Aug 28 12:14:49 1998 Martin M. Hunt <hunt@cygnus.com>
376
377 * gdbtk-cmds.c (gdb_loadfile): Open the file after doing
378 the symtab lookup and calling symtab_to_filename(). This
379 makes GDBtk work with the GDB "dir" command.
380
381 1998-08-18 Keith Seitz <keiths@cygnus.com>
382
383 * gdbtk-hooks.c (gdbtk_add_hooks): Set selected_frame_level_changed_hook.
384 (gdbtk_selected_frame_changed): New function.
385
386 * gdbtk-cmds.c (Gdbtk_Init): Add command gdb_stack into interpreter.
387 Link gdb's global selected_frame_level with interpreter global
388 gdb_selected_frame_level.
389 (gdb_stack): New function to faciltate speedier backtraces from
390 gdbtk.
391 (get_frame_name): New helper function for gdb_stack.
392
393 Tue Aug 18 15:42:40 1998 Martin M. Hunt <hunt@cygnus.com>
394
395 * gdbtk-cmds.c (gdb_listfuncs): Strip out global constructors
396 and destructors from the function list.
397
398 start-sanitize-ide
399 Thu Aug 13 15:15:59 1998 Drew Moseley <dmoseley@cygnus.com>
400
401 * Makefile.in (FOUNDRY_LIB_BASE): Added the Foundry SDK code that allows
402 gdbtk to be linked with the Foundry libraries provided by a prebuilt/released
403 binary version of Foundry. The libraries and header files need to come from
404 the installed location of Foundry rather than the devo subdirectories.
405 * configure.in (ENABLE_IDE): Foundry SDK additions. Added the "with-foundry-libs"
406 configure option.
407 * configure: Foundry SDK additions. Regenerated from configure.in.
408
409 end-sanitize-ide
410 Thu Aug 13 15:09:59 1998 Drew Moseley <dmoseley@cygnus.com>
411
412 * gdbtk.c (gdbtk_cleanup): added a scope-level around the contents
413 of the #ifdef so that the variable declarations in there would not
414 be illegal in a C compilation.
415
416 Mon Jul 27 13:07:16 1998 Martin M. Hunt <hunt@cygnus.com>
417
418 * gdbtk.c (gdbtk_call_command): Removed because it is now
419 in gdbtk-hooks.c
420 (null_routine): Removed.
421
422 * gdbtk-hooks.c (tracepoint_notify): Fix sprintf to
423 match number of arguments.
424
425 * gdbtk-cmds.c (gdb_loc): When calling gdb_loc with an
426 argument, call find_pc_line() to get a complete
427 symtab_and_line struct.
428
429 Fri Jul 24 14:25:43 1998 Keith Seitz <keiths@cygnus.com>
430
431 * gdbtk-cmds.c (gdb_search): Add missing NULL to switches.
432 Add missing flags to result_ptr.
433 Pass along any errors caused by getting the list of files from
434 tcl.
435 Allocate correct amount of memory for the file list.
436 Don't do any unecessary cleanups.
437
438 Fri Jul 24 01:08:37 1998 Martin M. Hunt <hunt@cygnus.com>
439
440 * gdbtk-cmds.c (gdb_loadfile): When there are no
441 linenumbers, use only one tab.
442
443 Sat Jul 18 12:28:39 1998 Martin M. Hunt <hunt@cygnus.com>
444
445 * gdbtk.c (gdbtk_cleanup): Add call to tcl function
446 gdbtk_cleanup. We need this so the GUI gets to clean
447 up no matter how GDB exits.
448
449 Wed Jul 1 13:10:58 1998 Jim Ingham <jingham@cygnus.com>
450
451 * Moved gdbtk_hooks.c & gdbtk_cmds.c to gdbtk-hooks.c &
452 gdbtk-cmds.c to comply with the gdb conventions. Changed the
453 configure & makefile to reflect the change...
454
455 Wed Jul 1 11:07:21 1998 Jim Ingham <jingham@cygnus.com>
456
457 * gdbtk.c: removed all the commands and hooks from this file so
458 now it contains only the startup code.
459 * gdbtk.c (gdbtk_init): Fixed a bug in the startup code on Windows
460 that caused gdbtk not to find the share directory unless
461 GDBTK_LIBRARY was set.
462 * gdbtk_cmds.c: New file - this contains all the Tcl commands that
463 gdb defines. All the old commands were moved here, the
464 string-based commands were converted to object commands, and the
465 object-based commands were all converted to uniformly use the
466 call_wrapper. A new function, Gdbtk_Init was added to centralize
467 initializing the gdb package.
468 * gdbtk_hooks.c: New file - All the hooks were moved here, and a new
469 function, gdbtk_add_hooks was added to centralize adding all these
470 hook functions. gdbtk_fputs was also modified to handle the new
471 result_ptr structure. See the comments in gdbtk.h for more
472 details.
473 * gdbtk.h: New file - this contains all the defines and globals
474 shared by gdbtk.c, gdbtk_cmds.c & gdbtk_hooks.c
475 * Makefile.in, configure.in & configure: mutatis mutandi for the
476 new files.
477
478
479 Mon Jun 29 11:49:17 1998 Keith Seitz <keiths@cygnus.com>
480
481 * main.c (main): Don't include gdbtk test code if GDBTK is
482 not defined by configure.
483
484 * configure.in: When enabling gdbtk, add "-DGDBTK" to ENABLE_CFLAGS.
485
486 * configure: Regenerate.
487
488 Fri Jun 26 13:56:07 1998 Keith Seitz <keiths@cygnus.com>
489
490 * gdbtk.c: Change all references to static global "interp" to
491 "gdbtk_interp" and export this global.
492 (gdbtk_init): If gdbtk_source_filename is not NULL, source this file
493 into the interpreter when it goes idle.
494 Add new command "gdb_search".
495 (gdb_search): New function which searches the symbol table.
496 (gdbtk_test): New function called by main when the --tclcommand
497 option is used.
498
499 * main.c (main): Add a new option "--tclcommand" which is used
500 by the testsuite to source a file into the interpreter when it
501 goes idle.
502
503 Sun Jun 21 09:31:12 1998 Ron Unrau (runrau@cygnus.com)
504
505 * gdbtk.c (gdb_set_bp): Use new interface.
506
507 Wed Jun 17 19:12:23 1998 Jeff Holcomb <jeffh@cygnus.com>
508
509 * Makefile.in (install-only): Install tracing help files.
510
511 Mon Jun 15 13:18:21 1998 Jim Ingham <jingham@cygnus.com>
512
513 * gdbtk.c (gdbtk_init): Add elements to the auto_path AS LIST
514 ELEMENTS. This allows gdbtk to work when installed in a directory
515 which has a space in the path. D. Moseley pointed out the bug.
516
517
518 Tue Jun 9 14:10:46 1998 Keith Seitz <keiths@cygnus.com>
519
520 * gdbtk.c (gdb_get_vars_command): Return static variables and
521 variables stored in registers.
522
523 * main.c (main): Call pre/post_add_symbol_hook's when loading
524 executables and symbol files.
525
526 Fri Jun 5 00:16:22 1998 Martin M. Hunt <hunt@cygnus.com>
527
528 * gdbtk.c (gdbtk_init): Change all references to
529 GDBTK_IDE to IDE_ENABLED.
530
531 Thu Jun 4 18:31:53 1998 Martin M. Hunt <hunt@cygnus.com>
532
533 * gdbtk.c (gdbtk_init): Initialize tkTable.
534
535 Thu Jun 4 10:15:03 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
536
537 * gdbtk.c: merged:
538
539 - Elena Zannoni <ezannoni@kwikemart.cygnus.com>
540 (call_obj_wrapper): in case of error, copy the
541 error message from the result to the error_string.
542 (gdbtk_fputs): add comments.
543 (gdb_actions_command): call validate_actionline when installing the
544 tracepoint, to do the syntax checking of the actions for us.
545 - Elena Zannoni <ezannoni@kwikemart.cygnus.com>
546 (gdb_get_trace_frame_num): new function to get the
547 trace frame number from gdb.
548 (gdbtk_init): added new command gdb_get_trace_frame_num.
549 - Jim Blandy <jimb@zwingli.cygnus.com>
550 (struct wrapped_call_objs): Change the `func' member to
551 be a Tcl_ObjCmdProc, not an Tcl_CmdProc, since it accepts a vector
552 of objects as arguments. Change the object vector to be const,
553 since that's what all the users of this structure seem to expect.
554 (call_obj_wrapper): Cast clientData properly before storing it in
555 the wrapped_args structure.
556
557 Thu May 28 17:19:14 1998 Keith Seitz <keiths@cygnus.com>
558
559 * gdbtk.c (_initialize_gdbtk): Get rid of the console. Patch from
560 Chris Faylor (cgf@cygnus.com).
561
562 * configure.in: Link cygwin32 with subsystem console.
563
564 * configure: Regenerated
565
566 Sun May 24 14:00:24 1998 Keith Seitz <keiths@cygnus.com>
567
568 * ser-unix.c (wait_for): Do not reset timeout_remaining for cygwin32 so that
569 we can use this member to track real timeouts.
570 (hardwire_readchar): Modify for cygwin32 so that we only ever use a real
571 system timeout of one second. Track the "real" timeout as a series of these
572 one second timeouts.
573 Call ui_loop_hook to keep the gui alive.
574
575 * top.c: Define new hook for cygwin32, "ui_loop_hook".
576
577 * gdbtk.c (gdbtk_init): Add ui_loop_hook for CygWin32 to work around
578 update problems.
579
580 Thu May 21 13:56:24 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
581
582 * gdbtk.c: reinserted the changes that were accidentally deleted:
583 (_initialize_gdbtk): Use correct device names in
584 cygwin-specific call (cosmetic change).
585 (gdbtk_ignorable_warning): removed va_list parameter,
586 which was unused.
587 (_initialize_gdbtk): add cygwin32 specific code to
588 allow `gdb -nw' to work when specified specified from a windows
589 console-mode command line.
590
591 1998-05-19 Jim Blandy <jimb@zwingli.cygnus.com>
592
593 * gdbtk.c (struct wrapped_call_objs): Change the `func' member to
594 be a Tcl_ObjCmdProc, not an Tcl_CmdProc, since it accepts a vector
595 of objects as arguments. Change the object vector to be const,
596 since that's what all the users of this structure seem to expect.
597 (call_obj_wrapper): Cast clientData properly before storing it in
598 the wrapped_args structure.
599
600 Wed May 13 11:12:58 1998 James Ingham <jingham@leda.cygnus.com>
601
602 * gdbtk.c: Fixed a goof in the definition of the gdb_get_args &
603 gdb_get_locals Tcl commands. Moved the previous ChangeLog entry
604 from ChangeLog to ChangeLog-gdbtk (here)...
605
606 Tue May 12 13:29:20 1998 Jeff Holcomb <jeffh@cygnus.com>
607
608 * Makefile.in (install-only): Add images/icons.txt and
609 images2/icons.txt to files that need to be installed.
610
611 Tue May 12 12:03:16 1998 James Ingham <jingham@leda.cygnus.com>
612
613 * gdbtk.c: Add an object call wrapper for the new Tcl_Obj based
614 commands. This way the obj commands will also go through
615 catch_errors. This is just a bandaid while I rewrite the
616 string-based commands to use the object format.
617
618 Tue May 5 09:30:25 1998 Christopher Faylor <cgf@cygnus.com>
619
620 * gdbtk.c (_initialize_gdbtk): Use correct device names in
621 cygwin-specific call (cosmetic change).
622
623 Wed Apr 29 15:53:16 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
624
625 * gdbtk.c (gdbtk_ignorable_warning): removed va_list parameter,
626 which was unused.
627
628 Tue Apr 28 19:41:33 1998 Tom Tromey <tromey@cygnus.com>
629
630 * Makefile.in (GDBTKLIBS): New macro.
631 (INSTALLED_LIBS): Include GDBTKLIBS.
632 (CLIBS): Likewise.
633 * configure: Rebuilt.
634 * configure.in: Put Tcl/Tk libs into GDBTKLIBS, not LIBS.
635 (GDBTKLIBS): AC_SUBST.
636
637 Thu Apr 23 19:01:05 1998 Keith Seitz <keiths@onions.cygnus.com>
638
639 * Makefile.in (install-only): Install help files.
640
641 Wed Apr 22 21:17:35 1998 Christopher Faylor <cgf@cygnus.com>
642
643 * gdbtk.c (_initialize_gdbtk): add cygwin32 specific code to
644 allow `gdb -nw' to work when specified specified from a windows
645 console-mode command line.
646
647 Wed Apr 15 11:23:53 1998 Stan Shebs <shebs@andros.cygnus.com>
648
649 * gdbtcl: Remove directory and contents, this version of
650 the interface is obsolete.
651
652 Mon Apr 13 16:17:52 1998 Martin M. Hunt <hunt@cygnus.com>
653
654 * gdbtk.c (gdb_loadfile): Change fstat() call to stat().
655 Needed because you can't convert a FILE* to an fd.
656
657 Mon Apr 13 16:28:07 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
658
659 * gdbtk.c: (perror_with_name_wrapper) new function to call
660 perror_with_name safely.
661 (gdb_loadfile) added source vs. executable time stamp check.
662 (gdbtk_warning) new function to pass a warning message to the gui.
663 (gdbtk_ignorable_warning) new function to pass a warning
664 to the gui. Used only for the src. vs. exec check.
665 (gdbtk_init) added warning_hook
666 added include <sys/stat.h>
667
668 Mon Apr 13 12:58:26 1998 Keith Seitz <keiths@onions.cygnus.com>
669
670 * gdbtk.c (gdbtk_start_timer): Include on all platforms. Decrease
671 timer interval a little.
672 (gdbtk_stop_timer): Include on all platforms.
673 (gdbtk_wait): No more signals! Use a timer on all platforms to keep the
674 GUI alive.
675 (gdbtk_init): Remove FIOASYNC and all x_fd references. Now using timers
676 on all platforms.
677
678 Fri Apr 10 15:48:10 1998 Jason Molenda (crash@bugshack.cygnus.com)
679
680 * gdbtk.c (gdb_listfiles): Allocate space for 'files' dynamically.
681
682 Thu Apr 9 14:20:59 1998 Martin M. Hunt <hunt@cygnus.com>
683
684 * gdbtk.c (gdbtk_init): Remove redundant variable "IDE".
685
686 Tue Apr 7 15:13:58 1998 Stan Shebs <shebs@andros.cygnus.com>
687
688 * gdbtk.tcl: Remove, no longer used.
689
690 Tue Apr 7 12:49:45 1998 Keith Seitz <keiths@onions.cygnus.com>
691
692 * gdbtk.c (gdb_cmd): NEVER call the busy, update, and idle hooks.
693
694 Tue Mar 31 15:42:06 1998 Keith Seitz <keiths@onions.cygnus.com>
695
696 * gdbtk.c (gdb_loadfile): Don't use the return result from
697 sprintf, which returns a char * under SunOS4.
698
699 Tue Mar 31 17:18:43 1998 Ian Lance Taylor <ian@cygnus.com>
700
701 * configure.in: Add $(LIBIDETCL) as well as $(LIBIDE) if
702 --enable-ide.
703 * Makefile.in (IDE_CFLAGS_X): Add -I for libidetcl/src.
704 (LIBIDETCL): Define.
705 * configure: Rebuild.
706
707 Sun Mar 29 21:19:46 1998 Keith Seitz <keiths@onions.cygnus.com>
708
709 * gdbtk.c (gdb_get_tracepoint_info): Change formatting of address.
710 (tracepoint_exists): Remove code which confuses assembly traces.
711
712 Sat Mar 28 12:13:23 1998 Keith Seitz <keiths@onions.cygnus.com>
713
714 * gdbtk.c (gdb_cmd): If argc > 2, assume that the busy and idle hooks
715 should not be called.
716
717 Thu Mar 26 22:29:28 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
718
719 * gdbtk.c: (gdb_trace_status) new function.
720 (gdbtk_init) added command "gdb_is_tracing".
721 (tracepoint_notify) added passcount information.
722
723 Thu Mar 26 12:00:35 1998 Martin M. Hunt <hunt@cygnus.com>
724
725 * gdbtk.c (gdbtk_fputs): Insert fencepost.
726 (gdb_loc): Correct pc calculation.
727 (gdb_immediate_command): Return if a load is in progress.
728 (gdb_cmd): Return if a load is in progress.
729 (target_stop_wrapper): New function.
730 (gdb_stop): Call target_stop_wrapper.
731 (x_event): Add fencepost and optimize load cancel check.
732 (gdbtk_start_timer): Set up structs only once.
733 (gdbtk_stop_timer): Just use preset structs to set timer parameters.
734 (gdb_loadfile): If file cannot be loaded, return error message.
735 (gdb_loadfile): Add space before tab so that lines without
736 a '-' can later be changed to have one.
737
738 Wed Mar 25 14:08:51 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
739
740 * gdbtk.c (gdbtk_pre_add_symbol): Use Tcl_merge to form Tcl commands.
741
742 Mon Mar 23 13:41:39 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
743
744 * gdbtk.c (gdb_get_mem): Rewrite to fetch entire contents
745 of the memory window at once.
746
747 Sat Mar 21 19:34:49 1998 Elena Zannoni <ezannoni@kwikemart.cygnus.com>
748
749 Merged changes from Foundry: list follows by author:
750
751 - Tom Tromey <tromey@cygnus.com>
752
753 * Makefile.in (gdbres.o): New target.
754 (WINDRES): New define.
755 * configure: Rebuilt.
756 * configure.in (WINDRES): Define.
757 (CONFIG_OBS): Include gdbres.o on Windows.
758 * gdbtool.ico: New file.
759 * gdb.rc: New file.
760 * gdbtk.c (gdbtk_init): Call ide_create_messagebox_command.
761 (gdbtk_cleanup): Call ide_interface_deregister_all.
762 (gdbtk_init): Pass event handle to cleanup.
763 (TclDebug): Use Tcl_Merge to construct command.
764 (gdbtk_init): Call ide_create_cygwin_path_command.
765
766 - Martin M. Hunt <hunt@cygnus.com>
767
768 * gdbtk.c (gdb_set_bp): Set addr_string for bp.
769 (gdb_get_breakpoint_info): Demangle function
770 names in breakpoint info.
771 Include "demangle.h".
772 (gdb_loc, gdb_listfuncs): Demangle C++
773 function names.
774 (gdb_set_bp): Properly quote filename to fix
775 problems with spaces. Send pc back as a hex string.
776 (gdb_listfuncs): Remove debugging line.
777 Turn off some debugging lines.
778 (breakpoint_notify): Return correct line number.
779 (gdb_get_breakpoint_info): Return correct line number.
780 (gdb_set_bp): New function to provide a better way to
781 set breakpoints.
782 (gdbtk_readline, gdbtk_readline_begin): Memory
783 allocated by tcl needs to be freed by Tcl_Free().
784 (find_file_in_dir): Deleted.
785 (gdb_find_file_command): Call full_lookup_symtab().
786 (gdb_listfuncs): Call full_lookup_symtab().
787 (full_lookup_symtab): New function. Like lookup_symtab
788 except handles multiple files with the same basename,
789 full pathnames, and always sets symtab->fullname.
790 (gdb_loadfile): Call full_lookup_symtab(). Clear
791 realloc'd memory.
792 (gdb_loadfile): Don't tag lines without source.
793 Tag source lines with source_tag.
794 (gdb_find_file_command, find_file_in_dir):
795 Rewrite. Now searches symtabs and psymtabs for a match
796 on the partial or full filename. Returns the full pathname.
797 (gdb_loadfile): Realloc additional memory
798 if someone loads in a file with more than 160,000
799 lines. I don't know if this really works because
800 I don't have enough memory to test it.
801 (gdb_sourcelines): Deleted.
802 (gdb_loadfile): New function. Takes a text widget
803 and loads it with the contents of a file. Marks
804 and tags source lines.
805 (pc_changed): New function.
806 (get_pc_register): Returns the value of
807 the PC to GDB.
808 (gdb_loc): If looking on the stack, return
809 real pc along with calling source line.
810 (gdb_loc): Return "" instead of "N/A" if
811 filename is not found.
812 (gdb_get_breakpoint_info): Same.
813 (get_register): For Natural mode, set format to 0.
814 Minor bugfixes from keiths.
815 (TclDebug): New function for debugging use.
816 (gdb_loc): Return correct PC for frames
817 that are not the innermost frame.
818 (gdb_listfiles): Rewritten to use object
819 API. Now takes an optional dirname which will cause
820 only files in that directory or its subdirectories
821 to be returned. Now returns basenames instead of
822 full pathnames.
823 (gdb_cmd): Set/reset load_in_progress flag.
824 (call_wrapper): Don't pop up dialog for errors in
825 downloads; just abort download.
826 (gdbtk_load_hash): Set return value correctly.
827
828 - Keith Seitz <keiths@onions.cygnus.com>
829
830 * gdbtk.c (gdbtk_init): Define the ui_loop_hook so that it can be
831 called by routines which might block, allowing us to update the GUI.
832 (gdbtk_wait): Move timer calls to annotation hooks.
833 (gdbtk_init): Define the annotation hooks.
834 (gdbtk_annotate_starting): New function for cygwin32 hosts.
835 (gdbtk_annotate_stopped): New function for cygwin32 hosts.
836 (gdbtk_annotate_exited): New function for cygwin32 hosts.
837 (gdbtk_annotate_signalled): New function. for cygwin32 hosts.
838 (gdbtk_init): Use gdbtk_print_frame_info hook.
839 (gdbtk_print_frame_info): New function which sets current_source_symtab
840 based on the given symtab and line info.
841 (gdb_immediate_command): New function which does
842 not buffer any
843 output. (Contrast to gdb_cmd.)
844 (gdb_prompt_command): New function to return gdb's prompt.
845 (find_file_in_dir): New functon which searches source paths
846 for a given filename.
847 (gdb_find_file): New function which returns path to given file -- uses
848 find_file_in_dir.
849 (gdbtk_init): Install "gdb_immediate", "gdb_find_file", and
850 "gdb_prompt"
851 commands into interpreter.
852
853 - Ian Lance Taylor <ian@cygnus.com>
854
855 * gdbtk.c (gdbtk_timer_going): If __CYGWIN32__, new static
856 variable.
857 (gdb_cmd): If __CYGWIN32__, if executing the load command, call
858 gdbtk_start_timer and gdbtk_stop_timer.
859 (call_wrapper): If __CYGWIN32__, if the timer is going, turn it
860 off. Clear load_in_progress.
861 (x_event): If load_in_progress, quit if download_cancel_ok.
862 (gdbtk_start_timer): Set gdbtk_timer_going.
863 (gdbtk_stop_timer): Clear gdbtk_timer_going.
864 (gdbtk_wait): Call x_event.
865 (gdbtk_init): Call ide_create_win_grab_command if
866 __CYGIN32__.
867 (gdb_clear_file): Clear stop_pc.
868
869 Wed Mar 4 16:50:18 1998 Jason Molenda (crash@bugshack.cygnus.com)
870
871 * gdbtk.c (gdb_listfiles): Fix thinko in last change.
872
873 Wed Mar 4 15:34:49 1998 Jason Molenda (crash@bugshack.cygnus.com)
874
875 * gdbtk.c (gdb_listfiles): Allocate space for 'files' dynamically.
876
877 Tue Feb 10 17:50:37 1998 Keith Seitz <keiths@onions.cygnus.com>
878
879 * gdbtk.c (gdbtk_modify_tracepoint): Define new tracepoint modification hook.
880 (gdbtk_print_frame_info): Define this hook so that current_source_symtab
881 is set properly.
882 (gdb_actions_command): Use free_actions () from tracepoint.c/h.
883
884 Mon Jan 26 11:37:55 1998 Keith Seitz <keiths@onions.cygnus.com>
885
886 * gdbtk.c (gdb_actions_command): Make note of next action
887 before freeing all references to it.
888
889 Sat Jan 24 23:52:08 1998 Martin M. Hunt <hunt@cygnus.com>
890
891 * gdbtk.c: Merge from Foundry branch.
892 (TclDebug): New debugging function.
893 (gdb_loc): For frames, find address of calling function
894 instead of whatever is on the stack (usually the next
895 instruction).
896 (gdb_listfiles): Takes an optional pathname argument and
897 returns an alphabetized list of basenames of files in the
898 path.
899
900 Wed Jan 22 10:37:02 1998 Keith Seitz <keiths@onions.cygnus.com>
901
902 * symfile.c: Define two new hooks for symbol reading:
903 "pre_add_symbol_hook" and "post_add_symbol_hook". These hooks
904 are called before we begin reading symbols, and after we finish.
905 (generic_load): Use new symbol reading hooks and get rid of
906 compiler warning.
907
908 * gdbtk.c (gdbtk_init): Add hooks for pre- and post-symbol reading.
909 (gdbtk_pre_add_symbol): New function: the pre-add-symbol hook.
910 (gdbtk_post_add_symbol): New function: the post-add-symbol hook.
911 (find_file_in_dir): New function. Moved the guts of gdb_find_file_command
912 into here to allow its use by others.
913 (gdb_loc): Use find_file_in_dir to return the real path to the file
914 (or "N/A" if we can't find it).
915
916 * configure.in (TIX_LIB_EXT): Define new variable for those special cases
917 when TCL_SHLIB_SUFFIX is not enough to specify the dependency.
918
919 * configure: Regenerate.
920
921 Fri Jan 23 07:47:06 1998 Fred Fish <fnf@cygnus.com>
922
923 * Makefile.in (uninstall): Remove installed gdbtcl dir, if one
924 was installed.
925
926 Thu Jan 15 12:42:28 1998 Keith Seitz <keiths@onions.cygnus.com>
927
928 * gdbtk.c (gdb_immediate_command): New function which does not buffer any
929 output. (Contrast to gdb_cmd.)
930 (gdbtk_init): Install "gdb_immediate" command into interpreter.
931
932 Wed Jan 14 16:38:44 1998 Keith Seitz <keiths@pizza.cygnus.com>
933
934 * configure.in (--enable-gdbtk): If tcl was built with --enable-shared,
935 use TCL_SHLIB_SUFFIX to specify the suffix of the library file so that
936 we don't expect to see "libfoo.a" instead of "libfoo.{so,sl, etc}".
937
938 * configure: Regenerate.
939
940 Wed Dec 31 16:50:26 1998 Keith Seitz (keiths@onions.cygnus.com)
941
942 * gdbtk.c (gdb_actions_command): extract and save step count
943 from "while-stepping" command
944
945 Tue Dec 16 21:16:42 1997 Ian Lance Taylor <ian@cygnus.com>
946
947 * Makefile.in (LIBGUI): New variable.
948 (GUI_CFLAGS_X): New variable.
949 (IDE_CFLAGS): Add $(GUI_CFLAGS_X).
950 * configure.in: Add $(LIBGUI) to TCL_LIBS and CONFIG_DEPS.
951 * configure: Rebuild.
952
953 Wed Dec 10 13:16:45 1997 Keith Seitz <keiths@onions.cygnus.com>
954
955 * gdbtk.c (gdb_get_tracepoint_info): Use info in struct
956 symtab_and_line (not struct tracepoint) so that we get the
957 real line info for an address. Arrange data more like
958 gdb_get_breakpoint_info.
959 (tracepoint_notify): Use info in struct symtab_and_line again.
960 (gdbtk_init): Add command "gdb_get_tracepoint_list" into
961 interpreter.
962 (gdb_get_tracepoint_list): New function that aids the source
963 window in displaying tracepoints when the file changes.
964
965 Fri Dec 5 10:31:23 1997 Keith Seitz <keiths@pizza.cygnus.com>
966
967 * gdbtk.c (gdbtk_init): Add gdb_find_file into interpreter.
968 (gdb_find_file_command): New function which searches source path
969 to find the real full filename of a file.
970
971 Mon Dec 1 10:19:44 1997 Keith Seitz <keiths@onions.cygnus.com>
972
973 * gdbtk.c: Move include of "guitcl.h" back out of IDE ifdef.
974 (gdbtk_init): Move ide_initialize_paths out of IDE ifdef.
975
976 * configure.in (TCL_LIBS, CONFIG_DEPS): Add IDE libraries for all
977 builds.
978 (CONFIG_OBS): Remove tracepoint.o, which should always be included.
979
980 * configure: regenerate
981
982 * Makefile.in (install-only): ALWAYS install the new gdbtk
983 (REMOTE_OBS): add tracepoint.o
984
985 Thu Nov 27 09:07:18 1997 Michael Meissner <meissner@cygnus.com>
986
987 * configure.in ({TCL_LIBS,CONFIG_DEPS}): Don't add IDE libraries
988 if not --enable-ide.
989 (CONFIG_OBS): Add tracepoint.o to list if --enable-gdbtk.
990 * configure: Regenerate.
991
992 * gdbtk.c (gdb_get_breakpoint_info): Add missing filename
993 argument.
994 (toplevel): Move include of guitcl.h into #ifdef IDE region.
995 (gdbtk_init): Move ide_initialize_paths call into #ifdef IDE
996 section.
997
998 * Makefile.in (gdbtk.o): Update dependencies.
999
1000 Wed Nov 26 15:02:43 1997 Keith Seitz <keiths@onions.cygnus.com>
1001
1002 * gdbtk.c (gdb_loc): symtab_to_filename can return NULL.
1003 (breakpoint_notify): Ditto.
1004 (gdb_get_breakpoint_info): Ditto.
1005
1006 Wed Nov 26 11:33:09 1997 Keith Seitz <keiths@onions.cygnus.com>
1007
1008 Merge in code from Foundry branch:
1009
1010 * Makefile.in (install-only): install the new gdbtk, not the old
1011
1012 * gdbtk.c (gdbtk_call_command): also run idle hooks for class_trace
1013 commands
1014 (gdbtk_init): Add new commands "gdb_get_locals", "gdb_get_args",
1015 "gdb_get_function", "gdb_get_line", "gdb_get_file",
1016 "gdb_tracepoint_exists", "gdb_get_tracepoint_info", "gdb_actions",
1017 and "gdb_prompt".
1018 (gdb_get_vars_command): New function.
1019 (gdb_get_line_command): New.
1020 (gdb_get_file_command): New.
1021 (gdb_get_function_command): New.
1022 (gdb_get_tracepoint_info): New.
1023 (gdbtk_create_tracepoint): New.
1024 (gdbtk_delete_tracepoint): New.
1025 (tracepoint_notify): New.
1026 (tracepoint_exists): New.
1027 (gdb_actions_command): New.
1028 (gdb_tracepoint_exists_command): New.
1029 (gdb_prompt_command): New.
1030
1031 Thu Nov 13 18:15:54 1997 Ian Lance Taylor <ian@cygnus.com>
1032
1033 * gdbtk.c: Move include of gdbcore.h to top of file.
1034 (close_bfds): New static function if _WIN32.
1035 (gdbtk_readline): Call close_bfds.
1036 (call_wrapper, tk_command_loop): Likewise.
1037 (gdb_clear_file): New static function.
1038 (gdbtk_init): Create gdb_clear_file Tcl command.
1039
1040 Wed Nov 12 14:58:39 1997 Jeff Holcomb <jeffh@cygnus.com>
1041
1042 * gdbtk.c: gdbtk_load_hash and ui_load_progress_hook return an
1043 int result.
1044 (gdbtk_load_hash): download hash routine returns an int result.
1045
1046 Mon Nov 10 15:11:51 1997 Ian Lance Taylor <ian@cygnus.com>
1047
1048 * gdbtk.c (gdbtk_init): Call ide_create_shell_execute_command if
1049 __CYGWIN32__.
1050 * configure.in: Add -lshell32 to WIN32LIBS on cygwin32.
1051 * configure: Rebuild.
1052
1053 Sun Nov 9 16:25:34 1997 Tom Tromey <tromey@cygnus.com>
1054
1055 * gdbtk.c (gdbtk_init): Run ide_create_help_command.
1056
1057 Tue Oct 28 17:31:47 1997 Martin M. Hunt <hunt@cygnus.com>
1058
1059 * gdbtk.c (gdbtk_init): Call ide_create_winprint_command.
1060
1061 Thu Oct 23 15:53:37 1997 Ian Lance Taylor <ian@cygnus.com>
1062
1063 * configure.in: Add -lgdi32 to WIN32LIBS when linking gdbtk on
1064 cygwin32.
1065 * configure: Rebuild.
1066
1067 Wed Oct 22 21:32:54 1997 Martin M. Hunt <hunt@cygnus.com>
1068
1069 * gdbtk.c (gdbtk_init): Create sizebox command on Windows.
1070
1071 Thu Oct 9 14:33:21 1997 Ian Lance Taylor <ian@cygnus.com>
1072
1073 * gdbtk.c (gdbtk_init): Remove assertion argument from call to
1074 ide_create_window_register_command.
1075
1076 Wed Oct 1 11:09:52 1997 Tom Tromey <tromey@cygnus.com>
1077
1078 * gdbtk.c (gdbtk_init): Pass name of restore interface to
1079 ide_create_window_register_command.
1080
1081 Fri Sep 26 21:08:22 1997 Keith Seitz <keiths@pizza.cygnus.com>
1082
1083 * gdbtk.c (gdbtk_init): Initialize ui_load_progress_hook.
1084
1085 Thu Sep 25 03:05:00 1997 Martin M. Hunt <hunt@cygnus.com>
1086
1087 * gdbtk.c (gdb_load_info): New function. Returns a list
1088 of section names and sizes for an executable.
1089 (gdbtk_load_hash): Stub function to call tcl function
1090 download_hash.
1091
1092 Tue Sep 23 01:29:00 1997 Martin M. Hunt <hunt@cygnus.com>
1093
1094 * gdbtk.c (gdb_get_mem): Fix compiler warning.
1095
1096 Sun Sep 21 00:15:00 1997 Martin M. Hunt <hunt@cygnus.com>
1097
1098 * gdbtk.c (gdb_get_mem): Fix problem with ASCII dump.
1099
1100 Tue Sep 16 18:07:17 1997 Martin M. Hunt <hunt@cygnus.com>
1101
1102 * gdbtk.c (gdb_get_mem): New function. Returns
1103 a formatted memory dump with optional ASCII dump.
1104
1105 Mon Sep 8 12:48:50 1997 Ian Lance Taylor <ian@cygnus.com>
1106
1107 * gdbtk.c: Include ilutk.h if IDE.
1108 (gdb_confirm_quit, gdb_force_quit): New static functions.
1109 (gdbtk_init): Add Tcl commands gdb_confirm_quit and
1110 gdb_force_quit.
1111
1112 Mon Sep 8 03:05:33 1997 Martin M. Hunt <hunt@cygnus.com>
1113
1114 * gdbtk.c (gdb_get_breakpoint_info): Now returns the
1115 function a breakpoint is in.
1116
1117 Fri Sep 5 20:23:58 1997 Ian Lance Taylor <ian@cygnus.com>
1118
1119 * gdbtk.c (gdbtk_init): Call ide_create_exit_command.
1120
1121 Wed Sep 3 19:39:15 1997 Ian Lance Taylor <ian@cygnus.com>
1122
1123 * gdbtk.c: Include guitcl.h.
1124 (gdbtk_init): Always call ide_initialize_paths. Set the Tcl
1125 variable IDE to 1 when using the IDE. Always try using auto path
1126 to find main.tcl.
1127 * Makefile.in (IDE_CFLAGS_X): Always include libide.
1128 (LIBIDE): New variable.
1129 (IDE_X): Omit -lide.
1130 (IDE_DEPS): Omit libide.
1131 * configure.in: Add LIBIDE to TCL_LIBS and CONFIG_DEPS.
1132 * configure: Rebuild.
1133
1134 Mon Aug 25 02:28:55 1997 Keith Seitz <keiths@pizza.cygnus.com>
1135
1136 * gdbtk.c: (gdb_target_has_inferior) check if inferior_pid is non-zero
1137 before assuming that the inferior is running.
1138
1139 Mon Aug 25 01:06:48 1997 Ian Lance Taylor <ian@cygnus.com>
1140
1141 * gdbtk.c (gdbtk_start_timer): Pass third argument to setitimer.
1142 (gdbtk_stop_timer): Likewise.
1143
1144 Mon Aug 25 00:23:08 1997 Keith Seitz <keiths@pizza.cygnus.com>
1145
1146 * gdbtk.c: (gdbtk_init) create new command "gdb_target_has_execution"
1147 (gdb_target_has_execution_command) new function
1148
1149 Sun Aug 24 20:27:22 1997 Ian Lance Taylor <ian@cygnus.com>
1150
1151 * gdbtk.c (gdb_loc): If there are no symbols, just bail
1152 immediately.
1153 (tk_command_loop): Print errors encountered while running
1154 gdbtk_tcl_preloop.
1155
1156 Sun Aug 24 13:44:03 1997 Tom Tromey <tromey@cygnus.com>
1157
1158 * gdbtk.c (gdbtk_init): Run ide_create_build_command.
1159
1160 Sat Aug 23 21:53:39 1997 Ian Lance Taylor <ian@cygnus.com>
1161
1162 * gdbtk.c: If CYGWIN32, include <sys/time.h>.
1163 (x_fd): Don't define if WINNT.
1164 (gdbtk_start_timer, gdbtk_stop_timer): New static functions if
1165 CYGWIN32.
1166 (gdbtk_wait): Don't set up signal handling if WINNT. If CYGWIN32,
1167 call gdbtk_start_timer and gdbtk_stop_timer.
1168 (gdbtk_init): Don't set up signal handling or make x_fd
1169 asynchronous if CYGWIN32.
1170
1171 Fri Aug 22 15:23:15 1997 Ian Lance Taylor <ian@cygnus.com>
1172
1173 * gdbtk.c (error_string_ptr): New static variable.
1174 (gdbtk_fputs): If result_ptr is NULL, and error_string_ptr is not
1175 NULL, and we're outputting to stderr, append string to
1176 error_string_ptr rather than calling gdbtk_tcl_fputs.
1177 (call_wrapper): Set up error_string_ptr. Put both error string
1178 and normal string in Tcl result.
1179
1180 * gdbtk.c (gdbtk_init): Don't call ide_run_server_init until after
1181 gdb has initialized.
1182
1183 Thu Aug 21 19:14:38 1997 Ian Lance Taylor <ian@cygnus.com>
1184
1185 * gdbtk.c: If _WIN32, include winuser.h.
1186 (gdbtk_init): If _WIN32, use MessageBox to display an error
1187 evaluating main.tcl.
1188
1189 Thu Aug 21 00:48:00 1997 Martin M. Hunt <hunt@pern.cygnus.com>
1190
1191 * gdbtk.c (gdbtk_init): Add call to ide_run_server_init().
1192 (gdb_cmd): For the load command, don't buffer the I/O.
1193
1194 Wed Aug 20 11:41:22 1997 Martin M. Hunt <hunt@cygnus.com>
1195
1196 * gdbtk.c (gdbtk_query): Chaneg free() call to Tcl_Free().
1197
1198 Tue Aug 19 17:09:19 1997 Ian Lance Taylor <ian@cygnus.com>
1199
1200 * Makefile.in (TCL_DEPS, TK_DEPS): New variables.
1201 (ITCL_DEPS, TIX_DEPS): New variables.
1202 (IDE_DEPS): New variable.
1203 (CDEPS): Include @CONFIG_DEPS@.
1204 * configure.in: Set and substitute CONFIG_DEPS and TIX_DEPS.
1205 * configure: Rebuild.
1206
1207 Sun Aug 17 00:42:11 1997 Martin M. Hunt <hunt@cygnus.com>
1208
1209 * gdbtk.c (gdb_listfuncs): New function that returns
1210 a list of all the functions in a source file.
1211
1212 Tue Aug 12 16:35:21 1997 Ian Lance Taylor <ian@cygnus.com>
1213
1214 * Makefile.in (install-only): Install tclIndex if ENABLE_IDE.
1215
1216 Mon Aug 11 10:43:04 1997 Tom Tromey <tromey@cygnus.com>
1217
1218 * gdbtk.c (gdbtk_init): Use ide_event_init_from_environment.
1219
1220 Fri Aug 8 15:59:24 1997 Ian Lance Taylor <ian@cygnus.com>
1221
1222 * gdbtk.c (gdbtk_init): Change gdbtk_lib_tmp and gdbtk_file to be
1223 dynamically allocated, rather than fixed size. Pass "gdbtcl" to
1224 ide_initialize_paths to match installed directory name. If IDE,
1225 use auto_path to search for main.tcl.
1226 * Makefile.in (install-only): If ENABLE_IDE, install from gdbtcl2
1227 rather than gdbtcl.
1228
1229 * gdbtk.c (gdbtk_cleanup): New static function.
1230 (gdbtk_init): Add gdbtk_cleanup as a final cleanup. Uncomment
1231 call to ide_initialize_paths. If we can't initialize the event
1232 system, set GDBTK_IDE to 0 in the Tcl interpreter. Create the
1233 ide_window_register and the ide_window commands. Initialize tk,
1234 itcl, and tix after initializing the IDE.
1235
1236 * configure.in (tixdir): Update for cygwin32 case for Tcl 8.0.
1237 * configure: Rebuild.
1238
1239 Fri Aug 8 00:13:32 1997 Martin M. Hunt <hunt@cygnus.com>
1240
1241 * gdbtk.c (breakpoint_notify): Change buffer size from 100
1242 to 256 to avoid memory corruption with very long pathnames.
1243
1244 Thu Aug 7 14:08:23 1997 Martin M. Hunt <hunt@cygnus.com>
1245
1246 * configure.in: Change required Tix version to 4.1.8.0 .
1247 * configure: Rebuilt.
1248
1249 Fri Aug 1 15:21:44 1997 Ian Lance Taylor <ian@cygnus.com>
1250
1251 * gdbtk.c (Tcl_Alloc): Don't provide our own version of this if
1252 _WIN32.
1253 (Tcl_Realloc, Tcl_Free): Likewise.
1254 * configure.in: Check for cygwin32 environment. Define and
1255 substitute WIN32LIBS and WIN32LDAPP. Always set configdir to
1256 unix; setting it to win was for an old Tcl/Tk configuration
1257 scheme.
1258 * aclocal.m4 (CY_AC_LOAD_TKCONFIG): Substitute TK_BUILD_INCLUDES.
1259 * Makefile.in (TK_CFLAGS): Add @TK_BUILD_INCLUDES@.
1260 (WIN32LDAPP, WIN32LIBS): Define.
1261 (CLIBS): Add $(WIN32LIBS).
1262 (gdb): Use $(WIN32LDAPP).
1263 * configure: Rebuild.
1264
1265 Tue Jul 22 19:45:37 1997 Martin M. Hunt <hunt@cygnus.com>
1266
1267 * configure.in, aclocal.m4: Another fix to find the
1268 correct Tix library name.
1269
1270 * configure: Rebuilt.
1271
1272 Mon Jul 21 22:24:07 1997 Martin M. Hunt <hunt@cygnus.com>
1273
1274 * aclocal.m4: Search for the correct tix library.
1275
1276 Thu Jul 10 00:02:41 1997 Martin M. Hunt <hunt@cygnus.com>
1277
1278 * Makefile.in, configure.in, aclocal.m4: Add Itcl, Tix, and
1279 IDE configuration information.
1280
1281 * gdbtk.c (breakpoint_notify): Send address, linenumber and
1282 filename when a breakpoint is set. Avoids call to bp_info.
1283 (gdbtk_init): Call Tcl_FindExecutable(). Add code to handle
1284 Itcl, Tix and IDE initialization.
1285
1286 * configure: Regenerated.
1287
1288 Fri Jun 13 10:28:09 1997 Fred Fish <fnf@cygnus.com>
1289
1290 * gdbtk.c (gdbtk_init): Make truth value test explicit.
1291 Remove unused static variable "Gdbtk_Library".
1292
1293 Sat Jun 7 02:34:19 1997 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
1294
1295 * gdbtk.c (gdb_get_breakpoint_info): Add string for new
1296 enumeration del_at_next_stop to bpdisp array.
1297
1298 Tue Jun 3 15:46:51 1997 Tom Tromey <tromey@cygnus.com>
1299
1300 * Makefile.in (LIB_RUNTIME_DIR): New variable.
1301
1302 Wed May 7 19:10:19 1997 Andrew Cagney <cagney@b1.cygnus.com>
1303
1304 * gdbtk.c (wrapped_call): New function - make actual call to tk
1305 worker function.
1306 (call_wrapper): Rewrite to use top.c:catch_errors.
1307
1308 * gdbtk.c (gdb_stop): If No target_stop set quit flag and hope for
1309 best.
1310
1311 Mon Apr 21 14:00:08 1997 Doug Evans <dje@canuck.cygnus.com>
1312
1313 * gdbtk.c (gdb_disassemble): Store endian-ness in `di'.
1314
1315 Wed Apr 16 12:33:06 1997 Andrew Cagney <cagney@b1.cygnus.com>
1316
1317 * Makefile.in (install-only): Make list of gdbtcl files to install
1318 explicit - was picking up files such as ChangeLog etc.
1319 (install-only): Don't blindly create the directory.
1320
1321 Tue Apr 1 15:04:21 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
1322
1323 * configure.in (gdbtcl): Create soft-link for gdbtcl/ directory
1324 instead of gdbtk.tcl.
1325
1326 Fri Mar 28 17:04:02 1997 Jason Molenda (crash@godzilla.cygnus.co.jp)
1327
1328 * Makefile.in (gdbtk.o): look for GDBTK_LIBRARY in $(datadir) by
1329 default, not $(srcdir).
1330
1331 Wed Mar 19 15:16:17 1997 Martin M. Hunt <hunt@onions.cygnus.com>
1332
1333 * Makefile.in: Install gdbtcl dir instead of gdbtk.tcl.
1334
1335 * gdbtk.c: Added some ifdefs for Windows. Changed GDBTK_FILENAME
1336 to GDBTK_LIBRARY, which is now a path to search.
1337 (gdb_path_conv): New function. Convert Cygwin32 pathname to
1338 DOS-style pathname.
1339
1340 * {aclocal.m4,configure.in}: Changes for Windows builds.
1341
1342 * configure: Rebuilt.
1343
1344 Fri Mar 14 10:01:29 1997 Tom Tromey <tromey@cygnus.com>
1345
1346 * configure: Regenerated.
1347 * configure.in (LIBS): Re-reverse order of TCL_LIBS and TK_LIBS.
1348
1349 Wed Mar 12 14:29:52 1997 Tom Tromey <tromey@cygnus.com>
1350
1351 * gdbtk.c (x_event): Use Tcl_DoOneEvent, TCL_DONT_WAIT,
1352 TCL_ALL_EVENTS.
1353
1354 * configure: Regenerated.
1355 * configure.in (ENABLE_GDBTK): Put TCL_LIBS after TK_LIBS in
1356 LIBS.
1357
1358 Mon Feb 10 13:50:53 1997 Stu Grossman (grossman@critters.cygnus.com)
1359
1360 * gdbtk.c (call_wrapper): Clear running_now if an error occurs.
1361
1362 Wed Dec 11 18:51:35 1996 Mark Alexander <marka@cygnus.com>
1363
1364 * gdbtk.c (gdb_loc): Correct truncation of PC on 64-bit MIPS.
1365
1366 Tue Nov 19 09:26:14 1996 Tom Tromey <tromey@cygnus.com>
1367
1368 * gdbtk.c (gdbtk_readline): Fix memory leak.
1369
1370 Mon Nov 18 23:43:05 1996 Tom Tromey <tromey@cygnus.com>
1371
1372 Fixes for Tcl 7.6 / Tk 4.2:
1373 * gdbtk.tcl (apply_filespec): Use tk_getOpenFile.
1374 Remove old fileselect code.
1375 * gdbtk.c (Tcl_Alloc): Rename from Tcl_Malloc.
1376
1377 Fri Sep 27 10:25:30 1996 Fred Fish <fnf@cygnus.com>
1378
1379 * gdbtk.tcl (create_copyright_window): Increase timeout from
1380 15 seconds to 30 seconds.
1381
1382 Wed Sep 4 17:28:40 1996 Stu Grossman (grossman@critters.cygnus.com)
1383
1384 * configure configure.in: Add host *windows* to list of hosts
1385 that don't support GDBtk.
1386
1387 Fri Aug 23 00:44:57 1996 Fred Fish <fnf@cygnus.com>
1388
1389 * gdbtk.c (gdbtk_init): Check for a DISPLAY env variable and
1390 gracefully degrade to using command line interface if none is
1391 found.
1392
1393 Fri Aug 9 12:32:53 1996 Tom Tromey <tromey@creche.cygnus.com>
1394
1395 * Makefile.in (LIB_INSTALL_DIR): New macro.
1396 (TCL): Include @TCL_LD_SEARCH_FLAGS@.
1397
1398 Thu Aug 1 20:35:01 1996 Tom Tromey <tromey@creche.cygnus.com>
1399
1400 * gdbtk.c (mainWindow): Deleted.
1401 (cleanup_init): Don't destroy main window.
1402 (gdbtk_init): Main window now created by Tk_Init.
1403
1404 * configure.in: Most X checks now handled automatically by Tk.
1405 Use new macros to find Tcl/Tk.
1406 * aclocal.m4: New version for new Tcl/Tk; from Don Libes.
1407 * config.in, configure: Regenerated.
1408
1409 * Makefile.in (TCL, TCL_CFLAGS, TK, TK_CFLAGS, X11_CFLAGS,
1410 X11_LDFLAGS, X11_LIBS): Changed for new Tcl and Tk.
1411
1412 Thu Aug 1 16:12:05 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
1413
1414 * Makefile.in (gdbtk.tcl): put in $(datadir), not $(libdir).
1415
1416 Fri Jul 26 14:07:37 1996 Ian Lance Taylor <ian@cygnus.com>
1417
1418 * gdbtk.c (gdb_disassemble): Initialize di.flavour.
1419
1420 Thu Jul 25 19:41:31 1996 Fred Fish <fnf@cygnus.com>
1421
1422 * gdbtk.c (null_routine): Ditto.
1423 (gdbtk_flush): Ditto.
1424 (gdbtk_fputs): Ditto.
1425 (gdbtk_query): Ditto.
1426 (gdbtk_readline): Ditto.
1427 (gdbtk_readline_end): Ditto.
1428 (gdb_get_breakpoint_list): Ditto.
1429 (gdb_get_breakpoint_info): Ditto.
1430 (breakpoint_notify): Ditto.
1431 (gdbtk_create_breakpoint): Ditto.
1432 (gdbtk_delete_breakpoint): Ditto.
1433 (gdbtk_modify_breakpoint): Ditto.
1434 (gdb_loc): Ditto.
1435 (gdb_eval): Ditto.
1436 (gdb_sourcelines): Ditto.
1437 (map_arg_registers): Ditto.
1438 (get_register_name): Ditto.
1439 (gdb_regnames): Ditto.
1440 (get_register): Ditto.
1441 (gdb_fetch_registers): Ditto.
1442 (register_changed_p): Ditto.
1443 (gdb_changed_register_list): Ditto.
1444 (gdb_cmd): Ditto.
1445 (call_wrapper): Ditto.
1446 (gdb_listfiles): Ditto.
1447 (gdb_stop): Ditto.
1448 (gdbtk_dis_asm_read_memory): Ditto.
1449 (compare_lines): Ditto.
1450 (gdb_disassemble): Ditto.
1451 (tk_command): Ditto.
1452 (cleanup_init): Ditto.
1453 (gdbtk_interactive): Ditto.
1454 (x_event): Ditto.
1455 (gdbtk_wait): Ditto.
1456 (gdbtk_call_command): Ditto.
1457 (tk_command_loop): Ditto.
1458 (gdbtk_init): Ditto.
1459
1460 * gdbtk.c (register_changed_p): Remove unused local variable "buf".
1461
1462 Sat Jul 20 17:46:40 1996 Fred Fish <fnf@cygnus.com>
1463
1464 * gdbtk.tcl (files_command): Reorder the binding tags for
1465 the listbox widget to avoid referencing the listbox after
1466 the containing widget has been destroyed by the action of
1467 a previous binding.
1468
1469 Sat Jul 20 10:09:28 1996 Fred Fish <fnf@cygnus.com>
1470
1471 * gdbtk.tcl (delete_expr): Unset corresponding element of
1472 expr_update_list when destroying an expression.
1473 (create_expr_window): Initialize expr_num, delete_expr_num,
1474 and expr_update_list here when each new expression window
1475 is created, rather than once at startup.
1476
1477 Mon Jul 15 16:44:05 1996 Stu Grossman (grossman@critters.cygnus.com)
1478
1479 * gdbtk.c (gdb_disassemble): Setup di.mach from
1480 tm_print_insn_info.mach, and set endian from TARGET_BYTE_ORDER.
1481
1482 Fri Jun 21 11:04:47 1996 Fred Fish <fnf@cygnus.com>
1483
1484 * gdbtk.tcl (create_register_windows): Include missing '$'s.
1485 Add global declarations for various reg_format_* variables.
1486 * gdbtk.tcl (populate_register_window): Make initial window one
1487 line taller to account for new column header line.
1488
1489 Fri Jun 21 09:46:47 1996 Fred Fish <fnf@cygnus.com>
1490
1491 * gdbtk.c (get_register): Support for printing raw formats.
1492 * gdbtk.tcl: Add hint for using debug_interface.
1493 (center_window, add_breakpoint_frame, delete_breakpoint_frame):
1494 Enclose arg in braces for consistency.
1495 (create_registers_window, populate_reg_window, update_registers):
1496 Major rewrite to support displaying multiple formats in the register
1497 window.
1498 (init_reg_info): New function.
1499 (recompute_reg_display_list): Reset reg_display_list, start
1500 register display lines at line 2.
1501
1502 Thu Jun 20 08:18:59 1996 Fred Fish <fnf@cygnus.com>
1503
1504 * gdbtk.tcl (gdbtk_tcl_readline_begin): Handle backspace to
1505 avoid backing up over prompt. At every input, make sure insert
1506 point is at least after command start, handle control-u to delete
1507 current input line.
1508 (tclsh): Handle backspace to avoid backing up over prompt. Handle
1509 control-u to delete current input line.
1510
1511 Wed Jun 19 17:23:38 1996 Geoffrey Noer <noer@cygnus.com>
1512
1513 * configure.in: disable gdbtk for *cygwin32* hosted compiles
1514 * configure: regenerated with autoconf 2.8
1515
1516 Sun May 19 16:49:37 1996 Fred Fish <fnf@cygnus.com>
1517
1518 * gdbtk.c (gdbtk_readline_begin, gdbtk_readline, gdbtk_readline_end):
1519 New functions.
1520 (tk_command_loop): Set instream to NULL to enable Tk user interaction.
1521 (gdbtk_init): Set readline_begin_hook, readline_hook,
1522 and readline_end_hook.
1523 * gdbtk.tcl (gdbtk_tcl_readline_begin, gdbtk_tcl_readline,
1524 gdbtk_tcl_readline_end): New functions.
1525 (tclsh): Pack scroll bar on right side of window, not left.
1526
1527 Fri May 17 13:54:34 1996 Fred Fish <fnf@cygnus.com>
1528
1529 * gdbtk.tcl (create_command_window): Change a misspelled "get"
1530 to the intended "cget".
1531 (delete_line): Fix so it deletes the current line at the
1532 insertion cursor.
1533
1534 Thu May 16 19:20:29 1996 Fred Fish <fnf@cygnus.com>
1535
1536 * gdbtk.tcl (gdb_prompt): Set this early on.
1537 (create_command_window): Use gdb_prompt rather than "(gdb) ".
1538 (gdbtk_tcl_preloop): Proc executed just prior to Tk main loop.
1539 (tclsh): If an evaluation window already exists, just bring it
1540 to the front instead of trying to create another.
1541 * gdbtk.c (tk_command_loop): New function.
1542 (gdbtk_init): Call tk_command_loop rather than Tk_MainLoop.
1543
1544 Thu May 16 16:16:35 1996 Fred Fish <fnf@cygnus.com>
1545
1546 * gdbtk.tcl (evaluate_tcl_command, tclsh): New functions that
1547 implement a tcl evaluation window for gdbtk maintainers to use.
1548
1549 Thu May 16 11:42:58 1996 Tom Tromey <tromey@creche.cygnus.com>
1550
1551 * gdbtk.tcl (files_command): Correctly insert list of files into
1552 listbox widget.
1553
1554 * gdbtk.tcl (files_command): listbox command no longer accepts
1555 -geometry.
1556
1557 Wed May 15 16:04:09 1996 Stan Shebs <shebs@andros.cygnus.com>
1558
1559 * gdbtk.tcl (create_command_window): If command window's buffer
1560 is disabled, don't execute any of the key bindings.
1561
1562 Mon May 13 13:43:25 1996 Fred Fish <fnf@cygnus.com>
1563
1564 * gdbtk.c (tk_command): Catch case where no argument is given
1565 since this will cause the tcl interpreter to dump core.
1566
1567 Wed May 8 20:33:24 1996 Fred Fish <fnf@cygnus.com>
1568
1569 * gdbtk.c: Fix a couple of misspellings.
1570
1571 Thu May 2 19:17:49 1996 Stan Shebs <shebs@andros.cygnus.com>
1572
1573 * gdbtk.tcl (debug_interface): New global, use to aid debugging.
1574 (insert_breakpoint_tag, delete_breakpoint_tag): Fix range.
1575 (file_popup_menu): Delete, never used.
1576 (listing_window_popup): Rename from listing_window_button_1,
1577 remove breakpoint toggling code.
1578 (toggle_breakpoint): New procedure.
1579 (create_file_win): Bind popup menu to button 2, toggle breakpoints
1580 with button 1 in breakpoint area, add display of tagged areas if
1581 debugging on.
1582
1583 Fri Apr 5 13:44:40 1996 Stan Shebs <shebs@andros.cygnus.com>
1584
1585 * gdbtk.c (running_now): New global variable.
1586 (gdb_cmd): Test it before executing any command.
1587 (gdbtk_call_command): Set it when inferior is running.
1588 * gdbtk.tcl (gdbtk_tcl_busy, gdbtk_tcl_idle): Enable and
1589 disable interaction with command window's text appropriately.
1590
1591 Fri Apr 5 13:25:42 1996 Michael Meissner <meissner@tiktok.cygnus.com>
1592
1593 * gdbtk.c (SIOCSPGRP, linux): If on Linux, undef SIOCSPGRP, since
1594 some versions of the kernel don't support it.
1595
1596 Tue Feb 6 16:31:25 1996 Tom Tromey <tromey@creche.cygnus.com>
1597
1598 * gdbtk.tcl (create_file_win): Eliminate text widget B1 binding so
1599 double-clicking will work again.
1600 (create_asm_win): Put "break" at end of all B1 bindings.
1601 (create_file_win): Lower "sel" tag, don't raise it.
1602 (ensure_line_visible): New proc.
1603 (update_listing, update_assembly): Use it.
1604 (create_copyright_window): Destroy window on Leave event.
1605 (create_command_window): Put "break" at end of all B2 bindings.
1606
1607 Wed Jan 24 15:28:41 1996 Tom Tromey <tromey@creche.cygnus.com>
1608
1609 * gdbtk.tcl, gdbtk.c: Updated copyrights.
1610
1611 * configure.in: Look for -ldl or -ldld when using Tcl 7.5 or
1612 greater.
1613 * configure: Rebuilt.
1614
1615 Tue Jan 23 09:00:48 1996 Doug Evans <dje@charmed.cygnus.com>
1616
1617 * gdbtk.c (gdb_disassemble): Pass fprintf_unfiltered to
1618 INIT_DISASSEMBLE_INFO.
1619
1620 Mon Jan 15 09:58:41 1996 Tom Tromey <tromey@creche.cygnus.com>
1621
1622 * gdbtk.tcl (create_expr_window): Many changes to update GUI.
1623 (add_expr): Changes from create_expr_window.
1624 (create_command_window): Set focus.
1625 (delete_expr): Rewrote.
1626 (expr_update_button): New proc.
1627 (add_expr): Put bindings on FocusIn, FocusOut.
1628 Don't allow .file_popup to be torn off.
1629
1630 Fri Jan 12 09:36:17 1996 Tom Tromey <tromey@creche.cygnus.com>
1631
1632 * gdbtk.tcl (gdbtk_tcl_query): Swap Yes and No buttons.
1633 (update_listing): Use lassign. Use "see" to scroll. Don't need
1634 screen_top, screen_bot, screen_height.
1635 (update_assembly): Use "see" to scroll.
1636 (textscrollproc): Removed.
1637 (create_file_win): Don't use textscrollproc.
1638 (asmscrollproc): Removed.
1639 (create_asm_window): Don't use asmscrollproc.
1640 (create_asm_win): Ditto.
1641 (screen_height, screen_top, screen_bot): Removed.
1642 (run_editor): New proc.
1643 (build_framework): Use it.
1644 (create_file_win, create_source_window): Don't use textscrollproc.
1645 (create_breakpoints_window): Set -xscrollcommand on canvas.
1646 (not_implemented_yet): Default button is 0.
1647 (delete_char): Don't use tk_textBackspace.
1648 (create_command_window): Allow Tk bindings to fire after deleting
1649 character.
1650 (create_command_window): Make Delete delete left, not right.
1651
1652 Thu Jan 11 10:08:14 1996 Tom Tromey <tromey@creche.cygnus.com>
1653
1654 * gdbtk.tcl (FSBox): Don't use tk_listboxSingleSelect.
1655
1656 Changes in sync with expect:
1657 * configure.in (ENABLE_GDBTK): Use CY_AC_PATH_TCL and
1658 CY_AC_PATH_TK.
1659 * aclocal.m4: Replaced with version from expect.
1660 * configure: Regenerated.
1661
1662 Wed Jan 10 09:07:22 1996 Tom Tromey <tromey@creche.cygnus.com>
1663
1664 * gdbtk.tcl (gdbtk_tcl_fputs, gdbtk_tcl_fputs_error,
1665 gdbtk_tcl_flush): Use "see", not "yview".
1666 (gdbtk_tcl_query): Use questhead bitmap.
1667 various: Always wrap condition of 'if' in {...}.
1668 (add_breakpoint_frame): Set -value on radiobuttons.
1669 (lassign): New proc.
1670 (add_breakpoint_frame): Use lassign, not series of assignments.
1671 (decr): Made faster.
1672 (interactive_cmd): Use "see", not "yview".
1673 (not_implemented_yet): Use warning bitmap.
1674 (update_expr): Don't allow $expr to be evalled by Tcl.
1675 (create_expr_window): Don't use "focus".
1676 (delete_char, delete_line): Define globally.
1677 (delete_line, delete_char, create_command_window, update_autocmd,
1678 build_framework, create_asm_win, create_file_win): Use "see", not
1679 "yview".
1680 (create_copyright_window, center_window, bind_widget_after_class):
1681 New procs.
1682 (FSBox,create_command_window, create_autocmd_window): Binding
1683 changes for Tk4.
1684 (textscrollproc): Define globally.
1685 (build_framework): tk_menuBar no longer needed. Keys Prior, Next,
1686 Home, End, Up, and Down are all defined by Tk.
1687 (apply_filespec): Use error bitmap in dialog.
1688 (files_command): Don't use tk_listboxSingleSelect.
1689 (files_command): Don't use "uniq" to remove duplicates from a
1690 list.
1691 (update_assembly): Use lassign.
1692 (create_asm_win): Removed redundant bindings.
1693 (listing_window_button_1, file_popup_menu): Use tk_popup.
1694 (ButtonRelease-1 binding): Just remove tag from window; rest
1695 handled by Tk.
1696
1697 * gdbtk.c (gdbtk_query): Use Tcl_Merge to provide quoting.
1698 (call_wrapper): Use Tcl_Eval, not Tcl_VarEval.
1699 (gdbtk_call_command): Ditto.
1700
1701 Thu Jan 4 16:04:54 1996 Stu Grossman (grossman@cygnus.com)
1702
1703 * configure configure.in: Make --enable-gdbtk be the default.
1704
1705 Thu Dec 28 15:10:49 1995 Stan Shebs <shebs@andros.cygnus.com>
1706
1707 * README.GDBTK: Polish introductory paragraph.
1708
1709 Mon Oct 16 11:27:06 1995 Stu Grossman (grossman@cygnus.com)
1710
1711 * gdbtk.c (gdb_disassemble): Use fprintf_unfiltered instead of
1712 fprintf_filtered.
1713
1714 Tue Oct 10 15:26:39 1995 Fred Fish <fnf@cygnus.com>
1715
1716 * README.GDBTK: Updated for version 4.15.
1717
1718 Sat Aug 19 17:20:22 1995 Michael Tiemann <tiemann@axon.cygnus.com>
1719
1720 * gdbtk.tcl: ENABLE comes back as "1" or "0", not "enable" or
1721 "disable".
1722 Also, wire up the breakpoint window so that it can be demo'd.
1723
1724 Tue Aug 1 11:44:53 1995 J.T. Conklin <jtc@rtl.cygnus.com>
1725
1726 * gdbtk.c: Include "gdb_string.h" instead of <string.h>.
1727
1728 Tue Jun 20 10:19:40 1995 Stu Grossman (grossman@cygnus.com)
1729
1730 * gdbtk.c: Add functions Tcl_Malloc, Tcl_Realloc, and Tcl_Free.
1731
1732 * gdbtk.tcl (add_breakpoint_frame): Add more fields.
1733 * (create_file_win create_asm_win build_framework): Create null
1734 bindings for meta keys to keep window from dropping down to
1735 insertion point when meta is pressed by itself. New bindings:
1736 Up/Down - Scroll up/down one line at a time
1737 Next/Prior - Scroll up/down one page at a time
1738 Home/End - Warp to current pc/end of file
1739 * (build_framework): Turn on breakpoint menu.
1740 * (create_command_window): Implement tab completion. Add binding
1741 for ^C to stop target.
1742
1743 Fri May 19 06:15:40 1995 Jim Kingdon <kingdon@deneb.cygnus.com>
1744
1745 * gdbtk.c: Conditionalize use of stdarg rather than varargs on
1746 ANSI_PROTOTYPES not __STDC__; it must match the definition of
1747 PARAMS.
1748
1749 Thu May 18 15:58:46 1995 J.T. Conklin <jtc@rtl.cygnus.com>
1750
1751 * gdbtk.c (gdbtk_query): Use stdarg.h macros when compiling with
1752 an ANSI compiler.
1753
1754 Sat Apr 15 13:52:24 1995 Stan Shebs <shebs@andros.cygnus.com>
1755
1756 * gdbtk.c (gdb_disassemble): Read from inferior if connected
1757 to a VxWorks target.
1758
1759 Fri Apr 14 10:18:20 1995 Stu Grossman (grossman@cygnus.com)
1760
1761 * README.GDBTK: New file. Contains the obvious.
1762
1763 Tue Apr 11 11:07:12 1995 Michael Meissner <meissner@tiktok.cygnus.com>
1764
1765 * gdbtk.c (gdbtk_init): If SIOCSPGRP is not available, but
1766 F_SETOWN is, use that.
1767
1768 Thu Apr 6 17:00:46 1995 Michael Meissner <meissner@tiktok.cygnus.com>
1769
1770 * Makefile.in (X11_INCLUDES): Define as empty.
1771 (X11_CFLAGS): Define as including $(X11_INCLUDES).
1772 (X11_LIB_SWITCHES): Define as empty.
1773 (X11_LIBS): Define as -lX11.
1774
1775 * configure.in (enable_gdbtk): If gdbtk, support the --x-includes
1776 and --x-libraries switches, setting the X11_INCLUDES and
1777 X11_LIB_SWITCHES respectively. Instead of using a hardcoded -lX11
1778 in ENABLE_CLIBS, use the X11_LIB_SWITCHES and X11_LIBS variables.
1779
1780 * gdbtk.c (gdbtk_init): If SIOCSPGRP is not available, don't use
1781 it. This means that the stop button doesn't work, but is better
1782 than nothing.
1783
1784 Wed Mar 29 17:09:29 1995 Stu Grossman (grossman@cygnus.com)
1785
1786 * Makefile.in (gdbtk.o): Use X11_CFLAGS to provide alternate
1787 locations (per-host) for X11 include files.
1788 * config/pa/hppahpux.mh (XM_CLIBS): Add -L/usr/lib/X11R5 to force
1789 the use of R5 libs.
1790 (X11_CFLAGS): Add this to indicate the locs
1791 of the R5 include files.
1792
1793 Wed Mar 8 16:12:21 1995 Stu Grossman (grossman@cygnus.com)
1794
1795 * gdbtk.c (gdb_get_breakpoint_info): Return error if breakpoint
1796 type is not bp_breakpoint.
1797
1798 Tue Feb 14 17:16:41 1995 Stu Grossman (grossman@cygnus.com)
1799
1800 * gdbtk.c: Ditto.
1801 * gdbtk.c: General cleanups, get rid of unused variables. Redo
1802 handling of stdout/stderr to just return output as the result of
1803 the tcl command that caused the output. Cleanup -Wall stuff.
1804 * (breakpoint_notify): Now returns just action and breakpoint
1805 number.
1806 * (gdb_get_breakpoint_list): New routine. Does the obvious.
1807 * (gdb_get_breakpoint_info): Mostly derived from the old
1808 breakpoint_notify, but returns lots more info.
1809 * (dsprintf_append_element): Helper routine, works like printf,
1810 but appends a tcl element onto the specified DString. Good for
1811 building up lists as return values.
1812 * (gdbtk_enable/disable_breakpoint): Go away. Replaced with
1813 gdbtk_modify_breakpoint.
1814 * (*many routines*): Use new result protocol.
1815 * (call_wrapper): Make sure that recursive calls don't trash results.
1816 * gdbtk.tcl: New windows, autocmd, and breakpoints.
1817 * (gdbtk_tcl_fputs): Don't use $current_output_win redirection
1818 anymore. It's not needed (in fact, this routine may not be needed
1819 anymore).
1820 * (gdbtk_tcl_breakpoint): Change to reflect new breakpoint
1821 notification protocol.
1822 * (gdbtk_tcl_busy gdbtk_tcl_idle): Straighten out buttons, remove
1823 catches.
1824 * (interactive_cmd): Use this wrapper around button invocations
1825 of many commands. This will catch errors and put the results into
1826 the command window. It also updates all the other windows.
1827 * Also, change reliefs of most things to sunken. This actually
1828 looks better.
1829 * (create_file_win): Fix margin binding to allow breakpoints to
1830 work again.
1831 * (create_asm_win): Use return value of gdb_disassemble instead
1832 of implicit I/O to the command window.
1833 * (create_command_window): Use new result protocol to get output
1834 from commands.
1835
1836 Sun Feb 5 20:32:44 1995 Jim Kingdon (kingdon@lioth.cygnus.com)
1837
1838 * gdbtk.c (gdb_disassemble): Deference pointer to function before
1839 calling it (pre-ANSI compilers generally require this).
1840
1841 Fri Feb 3 11:19:20 1995 Stu Grossman (grossman@cygnus.com)
1842
1843 * gdbtk.c (gdb_disassemble): Get rid of
1844 dis_asm_read_memory_hook. We can now call the disassemblers
1845 directly and have no need for this hook anymore.
1846
1847 Mon Jan 30 17:34:24 1995 Stu Grossman (grossman@cygnus.com)
1848
1849 * gdbtk.tcl (create_file_win): Disable old popup menu for source
1850 window.
1851
1852 Wed Jan 25 18:23:46 1995 Stu Grossman (grossman@cygnus.com)
1853
1854 * gdbtk.c (gdbtk_init): Prevent segfault when gdbtk.tcl can't be
1855 found.
1856 * gdbtk.tcl: Initialize expr_update_list() to prevent errors when
1857 popping up expression window for the first time.
1858
1859 Tue Jan 24 12:10:28 1995 Stu Grossman (grossman@cygnus.com)
1860
1861 * gdbtk.tcl (create_registers_window): Work around a radiobutton
1862 widget bug to make Options|Natural button work.
1863
1864 * gdbtk.c (gdb_disassemble): Fix problem with source+assembly and
1865 g++ caused by out-of-order pc's.
1866 * gdbtk.tcl (files_command): Remove duplicate file names. Also,
1867 add scrollbar.
1868
1869 Mon Jan 23 17:21:09 1995 Stu Grossman (grossman@cygnus.com)
1870
1871 * gdbtk.tcl: Take .gdbtkinit if it exists. Makes gdbtk match the
1872 doc!
1873
1874 Thu Jan 12 15:02:40 1995 Stu Grossman (grossman@cygnus.com)
1875
1876 * gdbtk.c, gdbtk.tcl: Update/add copyright.
1877 * gdbtk.tcl (build_framework): Several fixes for filespec widget,
1878 including dismiss button, and better error handling.
1879 * (create_command_win): Bind button 2 to retrieve selection.
1880
1881 Wed Jan 11 17:06:55 1995 Stu Grossman (grossman@cygnus.com)
1882
1883 * gdbtk.tcl: Add button to control mixed source disassembly.
1884 Use text widgets in expr window. The give me more control over
1885 layout.
1886 Add auto-updating of exprs in expression window.
1887 Handle expressions out of scope a bit better.
1888 Make selected window pop up to the top when invoked via the
1889 menubar.
1890 Make copyright message have raised relief.
1891
1892 * gdbtk.c (gdbtk_init): Improve handling for errors in gdbtk.tcl
1893 during startup.
1894
1895 Thu Jan 5 17:38:29 1995 Stu Grossman (grossman@cygnus.com)
1896
1897 * gdbtk.c (finish_saving_output): Don't do anything if not saving
1898 output.
1899 * (breakpoint_notify): Don't send null filename to tcl.
1900 * (gdb_eval): New tcl command to eval an expression.
1901 * (gdb_disassemble): New tcl command to do disassembly. This
1902 allows tcl code to choose between exec file and target memeory,
1903 and can also do mixed source and assembly.
1904 * (gdbtk_init): Move reading of gdbtk.tcl to the end to make sure
1905 that more of the environment is set up. Also, create link between
1906 gdb and tcl vars disassemble{-_}from{-_}exec.
1907
1908 * gdbtk.tcl: New expression window support.
1909 * Make assembly window be 80 columns wide.
1910 * Use new disassembly method. Add menu items to select
1911 disassembly from exec file or target.
1912 * Change View menubar item to Options.
1913
1914 * Get rid of Stack, Breakpoints, Signals, and Variables Windows,
1915 since they don't exist yet.
1916
1917 * Pop up a copyright window on startup.
1918
1919 Wed Jan 4 19:49:10 1995 Stan Shebs <shebs@andros.cygnus.com>
1920
1921 * gdbtk.tcl (build_framework): Add standard commands menu, more
1922 windows to standard windows menu.
1923 (not_implemented_yet): Clarify message.
1924
1925 Fri Dec 30 15:49:00 1994 Stan Shebs <shebs@andros.cygnus.com>
1926
1927 * gdbtk.tcl (FSBox): New proc, File Selection Box code from exmh.
1928 (not_implemented_yet): New proc.
1929 (build_framework): Add various file commands to file menu.
1930
1931 Fri Dec 23 16:18:50 1994 Stu Grossman (grossman@cygnus.com)
1932
1933 * gdbtk.c (gdbtk_wait gdbtk_init): Portability improvements for
1934 SIGIO handling.
1935
1936 Mon Dec 19 09:55:47 1994 Stu Grossman (grossman@cygnus.com)
1937
1938 * gdbtk.tcl (update_assembly): Force update to make sure that pc
1939 is visible when creating new assembly windows.
1940
1941 Sun Dec 18 23:31:20 1994 Stu Grossman (grossman@cygnus.com)
1942
1943 * gdbtk.c (gdbtk_wait gdbtk_init): Use different method of
1944 enabling I/O interrupts for SVR4 (streams).
1945 * (start_saving_output save_output get_saved_output
1946 finish_saving_output flush_holdbuf gdbtk_flush gdbtk_fputs
1947 gdbtk_init):
1948 Totally revamp to use TCLs dynamic string functions. Also, quote
1949 all data passed back to TCL to prevent errors with unmatched
1950 braces, odd characters, etc... This fixes several wierd problems
1951 with outputting strings containing unmatched braces.
1952 * (breakpoint_notify gdb_loc): Use long hex format to output
1953 addresses of breakpoints and PCs. This fixes some Alpha problems.
1954 * (breakpoint_notify): Add stream arg to call to gdbtk_fputs.
1955 * (gdb_listfiles): Also, go through the symtabs when looking for
1956 files. This makes xcoff work (sort of), but probably breaks
1957 something else.
1958 * (gdb_stop): Return TCL_OK instead of nothing. This fixes odd
1959 TCL errors when hitting stop button.
1960 * (tk_command): Don't pass interp->result on to Tcl_{Var}Eval, as
1961 that will trash the result. strdup the result instead and pass
1962 that on. Improve error handling as well.
1963
1964 * gdbtk.tcl (gdbtk_tcl_flush): Use global def of
1965 current_output_win. Makes flushing actually work!
1966 * (asm_win_name create_asm_win update_assembly): Bunch of fixes
1967 to make assembly windows stop flashing when loading a new file.
1968 * (gdbtk_tcl_busy gdbtk_tcl_idle): Use catch to prevent gdb_cmd
1969 errors from losing control.
1970 * (create_source_window): Add source file selection to View menu.
1971 * (create_command_window (<Key-Return> binding): Quote text fed
1972 into gdb_cmd to prevent eval errors.
1973
1974 Thu Dec 15 16:40:10 1994 Stu Grossman (grossman@cygnus.com)
1975
1976 * gdbtk.c: Improve mechanism for capturing output values.
1977 (full_filename): Remove.
1978 (gdb_cmd call_wrapper gdbtk_init): Protect all calls from tcl land
1979 with call_wrapper. This prevents longjmps (usually via error())
1980 from jumping out of tcl/tk and leaving things in an indeterminate
1981 state.
1982 (gdbtk_fputs): Differentiate stdout from stderr when passing text
1983 into tcl land.
1984 * gdbtk.tcl: New view option to disable line numbers. Put catch
1985 around most uses of gdb_cmd. Add update button to reg config
1986 window. Stop doing immediate updates when selecting registers.
1987 Change register view values into checkbuttons.
1988
1989 Mon Dec 12 16:59:29 1994 Stu Grossman (grossman@cygnus.com)
1990
1991 * gdbtk.tcl (reg_config_menu create_registers_window
1992 recompute_reg_display_list): Use array instead of individual vars
1993 for register display list.
1994 * (recompute_reg_display_list update_registers): Fix bug with not
1995 displaying all registers.
1996
1997 Mon Dec 12 12:22:21 1994 Stu Grossman (grossman@cygnus.com)
1998
1999 * gdbtk.c: New tcl commands: gdb_fetch_registers,
2000 gdb_changed_register_list, and gdb_regnames.
2001 * gdbtk.tcl: Use monochrome color model for now.
2002 * (delete_breakpoint_tag create_file_win): Add breakdot support.
2003 * (create_file_win create_asm_win update_listing build_framework
2004 create_source_window create_command_window): Re-org window
2005 creation to give all windows consistent look and feel.
2006 * (update_listing update_asm): Change pc pointer to '->'.
2007 * (registers_command reg_config_menu create_registers_window
2008 populate_reg_window update_registers): Revamp register window.
2009 Allow selection of registers to be displayed. Highlight changed
2010 registers.
2011
2012 Mon Nov 28 09:17:20 1994 Stu Grossman (grossman@cygnus.com)
2013
2014 * gdbtk.tcl (build_framework): Fix bug with setting window titles.
2015
2016 * gdbtk.tcl (build_framework): Add "Report bug" to help menu.
2017
2018 * gdbtk.tcl: Re-arrange windows using new, consistent layout. Clean
2019 up lots of code and centralize framework initialization.
2020
2021 Wed Nov 16 15:28:29 1994 Rob Savoye (rob@cygnus.com)
2022
2023 * Makefile.in: Fix the test for installing gdbtk.
2024
2025 Mon Nov 14 08:51:29 1994 Stu Grossman (grossman@cygnus.com)
2026
2027 * Makefile.in: Install gdbtk.tcl.
2028 * configure.in: Add ENABLE_GDBTK flag.
2029 * gdbtk.c (gdb_sourcelines): Returns list of source lines
2030 containing code. (gdb_regnames): Returns list of register names.
2031
2032 Thu Nov 3 14:25:24 1994 Stu Grossman (grossman@cygnus.com)
2033
2034 * gdbtk.c (gdb_stop): Switch to target_stop().
2035
2036 Tue Nov 1 16:41:12 1994 Stu Grossman (grossman@cygnus.com)
2037
2038 * Makefile.in: Use $(objdir)/tcl and $(objdir)/tk if they are
2039 available.
2040 * configure.in (ENABLE_CLIBS): Use $(TCL) and $(TK) instead of
2041 -ltcl and -ltk.
2042 * gdbtk.c: Get rid of lots of unnecessary #includes.
2043 * (gdbtk_init): Use ConnectionNumber macro instead of referencing
2044 Display structure directly.
2045 * gdbtk.tcl: Change exit button to quit button.
2046
2047 Wed Oct 26 15:41:07 1994 Stu Grossman (grossman@cygnus.com)
2048
2049 * gdbtk.c: Change sense and name of no_windows variable. Now
2050 called use_windows, and defaults to off (for compatibility).
2051
2052 Thu Oct 20 17:35:45 1994 Stu Grossman (grossman@cygnus.com)
2053
2054 * gdbtk.c (gdb_cmd): Force GUI into idle mode when errors occur.
2055 * (gdb_stop): New tcl command to stop the target process.
2056 * (x_event, gdbtk_wait): Allow GUI to interrupt gdb out of target
2057 waits.
2058 * (gdbtk_call_command): Wrapper around command processing to
2059 alert GUI of target state changes.
2060 * (gdbtk_init): Get the fd of X server for doing async
2061 notification of X events (via x_event). Setup new hooks.
2062 * gdbtk.tcl: Add scrollbars to assembly and command windows.
2063 * Change window foreground & background colors.
2064 * Create margin tag for breakpoints in source and assembly windows.
2065 * Add new routines to be invoked when target state changes to/from
2066 idle.
2067 * Add start of expression window.
2068 * Change bindings of mouse button 1 in assembly and source window
2069 to just set or clear breakpoints when in the margin tag.
2070 * Change shape of register window to be more vertical to better
2071 reflect its contents.
2072 * Add stop button.
2073 * Cleanup some code around command window bindings.
2074
2075 Sat Sep 17 17:05:14 1994 Stu Grossman (grossman@cygnus.com)
2076
2077 * gdbtk.tcl: Let ^U delete lines in the command window.
2078
2079 Fri Sep 16 15:40:34 1994 Stu Grossman (grossman@cygnus.com)
2080
2081 * gdbtk.c: Replace calls to full_filename with symtab_to_filename.
2082 * gdbtk.tcl: New routine pc_to_line replaces in line code. New
2083 routine decr replaces in line code.
2084 * (create_file_win): Use catch to handle open failures more
2085 elegantly. Also, create special window to display file open
2086 failure message. Move opening of file prior to creation of text
2087 widget.
2088 * (create_asm_win): Add PC as argument. We now base disassembly
2089 on PC instead of function name, since function names can be
2090 ambiguous (usually seen with shared libs). Also, use catch to
2091 simplify code where we don't care about failures.
2092
2093 Wed Sep 14 00:55:26 1994 Stu Grossman (grossman@cygnus.com)
2094
2095 * gdbtk.tcl: Add ref counts to breakpoint tags.
2096 * Put quotes around function name in disassemble command to better
2097 handle assembler names containing `.'.
2098 * Make pclist element 0 be filler to avoid off-by-one problem with
2099 line numbers.
2100 * Set names of top-level windows.
2101 * Add register display window.
2102 * Add PC to label of assembly window.
2103
2104 Tue Sep 13 08:59:04 1994 Stu Grossman (grossman@cygnus.com)
2105
2106 * gdbtk.c (gdbtk_flush gdbtk_fputs): Buffer up output to make
2107 disassembly more efficient.
2108 * (breakpoint_notify): Include pc in gdbtk_tcl_breakpoint
2109 callback.
2110 * (gdb_loc): Include pc in return value. Also, return function
2111 name if arg was specified.
2112 * (gdb_cmd_stub): Call gdb_flush to drain internal GDB buffers
2113 after command completes.
2114 * (gdbtk_init): Improve error handling.
2115
2116 * gdbtk.tcl: Add lots of comments. Clean up code.
2117 * (gdbtk_tcl_fputs): Make output window redirectable.
2118 * Add assembly window, and breapoint support.
2119 * Make button 1 in margin toggle breakpoints.
2120 * Use stippling to indicate breakpoint disabling.
2121
2122 Fri Sep 2 19:11:40 1994 Stu Grossman (grossman@cygnus.com)
2123
2124 * configure.in: Don't symlink to gdbtk.tcl if it's already there.
2125
2126 Thu Jul 28 14:37:36 1994 Stu Grossman (grossman@cygnus.com)
2127
2128 Support for TK GUI.
2129 * Makefile.in: Add rule for gdbtk.o.
2130 * configure.in: Add support for --enable-gdbtk.
2131 * gdbtk.c: New file. Contains support routines for TK interface.
2132 * gdbtk.tcl: New file. Implements GUI policy.
2133
2134 \f
2135 Local Variables:
2136 mode: change-log
2137 left-margin: 8
2138 fill-column: 74
2139 version-control: never
2140 End: