diff options
author | Martin Hunt <hunt@redhat.com> | 1998-08-30 07:53:29 +0000 |
---|---|---|
committer | Martin Hunt <hunt@redhat.com> | 1998-08-30 07:53:29 +0000 |
commit | 4ff5d55a081fbb280b68d912bf3a4b5f26541b5c (patch) | |
tree | 39ec26e18a03d02cc992a5afe7b352eb3b36b6e6 /gdb/gdbtk.c | |
parent | d405c4a1aec90299f768f191e63494407ce84536 (diff) | |
download | gdb-4ff5d55a081fbb280b68d912bf3a4b5f26541b5c.zip gdb-4ff5d55a081fbb280b68d912bf3a4b5f26541b5c.tar.gz gdb-4ff5d55a081fbb280b68d912bf3a4b5f26541b5c.tar.bz2 |
Sun Aug 30 00:49:18 1998 Martin M. Hunt <hunt@cygnus.com>
* gdbtk-cmds.c (Gdbtk_Init): Link C variable gdb_context
with tcl variable gdb_context_id.
* gdbtk-hooks.c (gdbtk_context_change): Implement new hook called
context_hook. Called when threads change.
* gdbtk.c: Initialize gdb_context.
* gdbtk.h: Declare gdb_context.
* infrun (wait_for_inferior): Call context_hook.
* thread.c (thread_command): Call context_hook.
* defs.h: Declare context_hook.
Diffstat (limited to 'gdb/gdbtk.c')
-rw-r--r-- | gdb/gdbtk.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/gdbtk.c b/gdb/gdbtk.c index e8d31ad..c59821f 100644 --- a/gdb/gdbtk.c +++ b/gdb/gdbtk.c @@ -102,21 +102,21 @@ Tcl_Interp *gdbtk_interp = NULL; static int gdbtk_timer_going = 0; +/* linked variable used to tell tcl what the current thread is */ +int gdb_context = 0; + /* This variable is true when the inferior is running. See note in * gdbtk.h for details. */ - int running_now; /* This variable determines where memory used for disassembly is read from. * See note in gdbtk.h for details. */ - int disassemble_from_exec = -1; /* This variable holds the name of a Tcl file which should be sourced by the interpreter when it goes idle at startup. Used with the testsuite. */ - static char *gdbtk_source_filename = NULL; #ifndef _WIN32 |