* top.c (context_hook): Define.
authorTom Tromey <tromey@redhat.com>
Mon, 31 Aug 1998 22:43:21 +0000 (22:43 +0000)
committerTom Tromey <tromey@redhat.com>
Mon, 31 Aug 1998 22:43:21 +0000 (22:43 +0000)
* gdbtk-hooks.c (context_hook): Don't define.

gdb/ChangeLog
gdb/ChangeLog-gdbtk
gdb/gdbtk-hooks.c
gdb/top.c

index 49150fdc6a5c0b25a71e9a1c3125a99fc8b0442a..ba0b361f4820083607da7e1c8c1e40050d762a1f 100644 (file)
@@ -1,7 +1,11 @@
+Mon Aug 31 15:42:10 1998  Tom Tromey  <tromey@cygnus.com>
+
+       * top.c (context_hook): Define.
+
 Tue Aug 25 13:21:58 1998  Michael Snyder  <msnyder@cleaver.cygnus.com>
 
        * ax-gdb.c (gen_var_ref): Allow for typedef types.
-       (gen_cast, gen_bitfield_ref, gen_expr): ditto.
+       (gen_cast, gen_bitfield_ref, gen_expr, gen_deref): ditto.
 
 Mon Aug 24 18:29:03 1998  Michael Snyder  <msnyder@cleaver.cygnus.com>
 
index 2beed22f1433e8f48e40e62ac48c29777bb85e27..d4baa251a6cb8bdae9e3e56a83feeb123ec29ab4 100644 (file)
@@ -1,3 +1,7 @@
+Mon Aug 31 15:42:10 1998  Tom Tromey  <tromey@cygnus.com>
+
+       * gdbtk-hooks.c (context_hook): Don't define.
+
 1998-08-31  Keith Seitz  <keiths@cygnus.com>
 
        * gdbtk-cmds.c (gdb_listfuncs): When stripping out "global destructors"
index d4a9fa1bbcedcf3c8c5cdb7a5c5a2cb77e381900..8f6f19c3e5583ddc60535bbdb97c6b15ac42c6b4 100644 (file)
@@ -111,7 +111,6 @@ static void pc_changed PARAMS ((void));
 static void tracepoint_notify PARAMS ((struct tracepoint *, const char *));
 static void gdbtk_selected_frame_changed PARAMS ((int));
 static void gdbtk_context_change PARAMS ((int));
-void (*context_hook) PARAMS ((int));
 
 /*
  * gdbtk_fputs can't be static, because we need to call it in gdbtk.c.
index b9d759b3e0b09a9ea70e9bc69716432c99579719..d666f43d94d5a661c88809b416f1c7314c700f70 100644 (file)
--- a/gdb/top.c
+++ b/gdb/top.c
@@ -460,6 +460,9 @@ int (*target_wait_hook) PARAMS ((int pid, struct target_waitstatus *status));
 void (*call_command_hook) PARAMS ((struct cmd_list_element *c, char *cmd,
                                   int from_tty));
 
+/* Called when the current thread changes.  Argument is thread id.  */
+
+void (*context_hook) PARAMS ((int id));
 
 /* Takes control from error ().  Typically used to prevent longjmps out of the
    middle of the GUI.  Usually used in conjunction with a catch routine.  */