summaryrefslogtreecommitdiff
path: root/sim/common/syscall.c
diff options
context:
space:
mode:
authorDaniel Jacobowitz <drow@false.org>2007-10-11 18:40:29 +0000
committerDaniel Jacobowitz <drow@false.org>2007-10-11 18:40:29 +0000
commitb981d7096356e3e92b66f0813881754fc69bf41d (patch)
tree0edc96fe699cafa5857e63e111d743a37316394c /sim/common/syscall.c
parentf5bc1778c3150f6e9364a1af81f3ba2658f9e68c (diff)
downloadbinutils-gdb-b981d7096356e3e92b66f0813881754fc69bf41d.tar.gz
2007-10-11 Jesper Nilsson <jesper.nilsson@axis.com>
* callback.c (cb_is_stdin): Add. * syscall.c (cb_syscall): Test for stdin, not just fd 0. 2007-10-11 Jesper Nilsson <jesper.nilsson@axis.com> * callback.h (cb_is_stdin): Add prototype.
Diffstat (limited to 'sim/common/syscall.c')
-rw-r--r--sim/common/syscall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/common/syscall.c b/sim/common/syscall.c
index 379f7e16df1..a3e7560bf48 100644
--- a/sim/common/syscall.c
+++ b/sim/common/syscall.c
@@ -291,7 +291,7 @@ cb_syscall (cb, sc)
while (count > 0)
{
- if (fd == 0)
+ if (cb_is_stdin (cb, fd))
result = (int) (*cb->read_stdin) (cb, buf,
(count < FILE_XFR_SIZE
? count : FILE_XFR_SIZE));