summaryrefslogtreecommitdiff
path: root/gdb/gdbtk/library/console.itb
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/gdbtk/library/console.itb')
-rw-r--r--gdb/gdbtk/library/console.itb7
1 files changed, 4 insertions, 3 deletions
diff --git a/gdb/gdbtk/library/console.itb b/gdb/gdbtk/library/console.itb
index 26e0946814e..120208bd607 100644
--- a/gdb/gdbtk/library/console.itb
+++ b/gdb/gdbtk/library/console.itb
@@ -19,7 +19,6 @@ body Console::constructor {args} {
debug "$args"
_build_win
eval itk_initialize $args
- add_hook gdb_busy_hook [list $this busy]
add_hook gdb_idle_hook [list $this idle]
add_hook gdb_no_inferior_hook [list $this idle]
@@ -40,7 +39,6 @@ body Console::constructor {args} {
body Console::destructor {} {
global gdbtk_state
set gdbtk_state(console) ""
- remove_hook gdb_busy_hook [list $this busy]
remove_hook gdb_idle_hook [list $this idle]
remove_hook gdb_no_inferior_hook [list $this idle]
@@ -205,7 +203,10 @@ body Console::idle {} {
set _running 0
}
-body Console::busy {} {
+# ------------------------------------------------------------------
+# METHOD: busy - busy event handler
+# ------------------------------------------------------------------
+body Console::busy {event} {
set _running 1
}