diff options
Diffstat (limited to 'gdb/event-top.c')
-rw-r--r-- | gdb/event-top.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/event-top.c b/gdb/event-top.c index ac0f370..c96f104 100644 --- a/gdb/event-top.c +++ b/gdb/event-top.c @@ -524,7 +524,8 @@ stdin_event_handler (int error, gdb_client_data client_data) void ui_register_input_event_handler (struct ui *ui) { - add_file_handler (ui->input_fd, stdin_event_handler, ui); + add_file_handler (ui->input_fd, stdin_event_handler, ui, + string_printf ("ui-%d", ui->num)); } /* See top.h. */ |