diff options
author | Pedro Alves <palves@redhat.com> | 2009-05-21 16:00:14 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2009-05-21 16:00:14 +0000 |
commit | d9d2d8b6c09d51c13c6c26a7bfa6bc1bbddf574a (patch) | |
tree | 4ca9a31ba1b55d69dfdc0821ebd47a4b4d22dd6d /gdb/linux-nat.c | |
parent | 47608cb1acc3880b330b8d3a8ad6aa29218046d9 (diff) | |
download | gdb-d9d2d8b6c09d51c13c6c26a7bfa6bc1bbddf574a.zip gdb-d9d2d8b6c09d51c13c6c26a7bfa6bc1bbddf574a.tar.gz gdb-d9d2d8b6c09d51c13c6c26a7bfa6bc1bbddf574a.tar.bz2 |
* linux-nat.c (linux_nat_terminal_inferior)
(linux_nat_terminal_ours): Don't check sync_execution.
* remote.c (remote_terminal_inferior, remote_terminal_ours):
Don't check sync_execution. Update comments.
* target.c (target_terminal_inferior): New.
* target.h (target_terminal_inferior): Delete macro, and declare
as function.
* event-top.c (async_disable_stdin): Make idempotent. Don't give
the target the terminal here.
* inflow.c (terminal_ours_1): Don't return early without setting
`terminal_is_ours'.
Diffstat (limited to 'gdb/linux-nat.c')
-rw-r--r-- | gdb/linux-nat.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c index 8f12587..9057442 100644 --- a/gdb/linux-nat.c +++ b/gdb/linux-nat.c @@ -4360,14 +4360,9 @@ linux_nat_terminal_inferior (void) return; } - /* GDB should never give the terminal to the inferior, if the - inferior is running in the background (run&, continue&, etc.). - This check can be removed when the common code is fixed. */ - if (!sync_execution) - return; - terminal_inferior (); + /* Calls to target_terminal_*() are meant to be idempotent. */ if (!async_terminal_is_ours) return; @@ -4393,9 +4388,6 @@ linux_nat_terminal_ours (void) but claiming it sure should. */ terminal_ours (); - if (!sync_execution) - return; - if (async_terminal_is_ours) return; |