summaryrefslogtreecommitdiff
path: root/gdb/top.h
Commit message (Collapse)AuthorAgeFilesLines
* * coffread.c: Remove redundant static declarations. ReplaceAlexandre Oliva2002-03-251-1/+1
| | | | | | | occurrences of `PTR' with `void *'. * elfread.c, mdebugread.c, minsyms.c, mipsread.c: Likewise. * top.h (quit_cover): Likewise. * defs.h (catch_errors): Likewise.
* Update makefile.in dependencies. Add header wrappers.Andrew Cagney2001-10-211-0/+5
|
* Update/correct copyright notices.Kevin Buettner2001-03-061-1/+2
|
* Replace command_loop_marker() with null_cleanup().Andrew Cagney2000-07-051-1/+0
|
* PARAMS removal.Kevin Buettner2000-05-281-15/+16
|
* Eliminate make_cleanup_func from top.cAndrew Cagney2000-05-221-1/+1
|
* import gdb-2000-02-02 snapshotJason Molenda2000-02-031-0/+2
|
* import gdb-2000-02-01 snapshotJason Molenda2000-02-021-3/+2
|
* import gdb-1999-12-13 snapshotJason Molenda1999-12-141-17/+0
|
* import gdb-1999-11-08 snapshotJason Molenda1999-11-091-13/+0
|
* import gdb-1999-07-07 post reformatJason Molenda1999-07-071-14/+15
|
* import gdb-1999-07-05 snapshotJason Molenda1999-07-051-1/+0
|
* import gdb-1999-06-14 snapshotJason Molenda1999-06-141-0/+12
|
* import gdb-1999-05-25 snapshotJason Molenda1999-05-251-3/+3
|
* import gdb-1999-05-10Stan Shebs1999-05-111-0/+16
|
* import gdb-19990422 snapshotStan Shebs1999-04-261-0/+2
|
* Initial creation of sourceware repositorygdb-4_18-branchpointStan Shebs1999-04-161-0/+67
|
* Initial creation of sourceware repositoryStan Shebs1999-04-161-67/+0
|
* Start of HP merge changes to GDB.David Taylor1998-12-101-0/+7
|
* fix gdb/13620 -- control-c to interrupt gdb command only works once.David Taylor1998-01-051-2/+12
| | | | | if HAVE_SIGSETJMP is not defined, nothing is changed; if it is defined (as it now is for sysv4 based systems), then the fix is enabled.
* * tracepoint.c (set_raw_tracepoint): make sure there's a trailing ↵Keith Seitz1997-11-261-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | slash on the directory name * Merge (lots) with foundry-971118-build * Makefile.in (install-only): install the new gdbtk, not the old * top.h: add declaration of get_prompt * top.c (get_prompt): new function * gdbtk.c (gdbtk_call_command): also run idle hooks for class_trace commands (gdbtk_init): add new commands "gdb_get_locals", "gdb_get_args", "gdb_get_function", "gdb_get_line", "gdb_get_file", "gdb_tracepoint_exists", "gdb_get_tracepoint_info", "gdb_actions", and "gdb_prompt" (gdb_get_vars_command): new function (gdb_get_line_command): new function (gdb_get_file_command): new function (gdb_get_function_command): new function (gdb_get_tracepoint_info): new function (gdbtk_create_tracepoint): new function (gdbtk_delete_tracepoint): new function (tracepoint_notify): new function (tracepoint_exists): new function (gdb_actions_command): new function (gdb_tracepoint_exists_command): new function (gdb_prompt_command): new function * main.tcl: initialize gdbtk_state(readline) * console.tcl (invoke): get realine working (activate): add prompt argument for readline (setprompt): add prompt argument for readline * interface.tcl (gdbtk_tcl_readline): hack to get readline working * lots: Merge with foundry-971118-build * console.tcl (setprompt): get prompt from gdb * prefs.tcl (pref_set_defaults): add tracepoint defaults * interface.tcl (gdbtk_tcl_tracepoint): new function * src.tcl (constructor): set default behavior of left click, make a tracepoint dot, too (fill_files): "new" function: ripped out of "location" (location): use fill_files instead (do_bp): add support for tracepoints (bp_line): add support for tracepoints (set_tracepoint): new function (config_win): add "Set tracepoint here" to right-click menu * actiondlg.tcl: new file to help with tracepoint data collection actions * tracedlg.tcl: new file to help with tracepoints
* * top.c (print_gdb_version): Rewrote to comply with new GNU codingFred Fish1996-09-271-1/+0
| | | | | | | | | | | | | standards for the --version option. (print_gnu_advertisement): Remove, now part of print_gdb_version. (show_version): Remove call to print_gnu_advertisement. * top.h (print_gnu_advertisement): Remove prototype. * main.c (print_gdb_help): Move help to static function and add prototype. (main): Call print_gdb_help rather than inlining it. (main): Remove call to print_gnu_advertisement. * gdbtk.tcl (create_copyright_window): Increase timeout from 15 seconds to 30 seconds.
* Update FSF address.Fred Fish1995-08-021-1/+1
|
* * energize-patches, main.c (main), top.c (gdb_init, pwd_command),Fred Fish1994-06-231-1/+1
| | | | | top.h: Change all occurances of dirbuf to gdb_dirbuf. Collides with global variable of same name in libnsl.so on UnixWare.
* * main.c: Move entire file except for #ifndef MAIN_OVERRIDE codeJim Kingdon1994-06-031-0/+48
to new file top.c. Make things extern instead of static and similar rearrangements to deal with this. * top.h: New file. * utils.c: Move fputs_unfiltered to main.c. Remove FPUTS_UNFILTERED_OVERRIDE ifndef. * Makefile.in: Change so that gdb uses main.c, utils.c, and top.c, and libgdb uses utils.c and top.c.