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