summaryrefslogtreecommitdiff
path: root/src/sim/syscall_emul.hh
diff options
context:
space:
mode:
authorJoel Hestness <jthestness@gmail.com>2014-12-27 13:48:40 -0600
committerJoel Hestness <jthestness@gmail.com>2014-12-27 13:48:40 -0600
commit642b9b4fab0fcba77ed4bc596c4adc92ae0f13c3 (patch)
tree512a314d8416a6b257b58a2e1a84705121814614 /src/sim/syscall_emul.hh
parentdf8df4fd0a95763cb0658cbe77615e7deac391d3 (diff)
downloadgem5-642b9b4fab0fcba77ed4bc596c4adc92ae0f13c3.tar.xz
syscall_emul: Return correct writev value
According to Linux man pages, if writev is successful, it returns the total number of bytes written. Otherwise, it returns an error code. Instead of returning 0, return the result from the actual call to writev in the system call.
Diffstat (limited to 'src/sim/syscall_emul.hh')
-rw-r--r--src/sim/syscall_emul.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sim/syscall_emul.hh b/src/sim/syscall_emul.hh
index a4f9b238e..0c06a5147 100644
--- a/src/sim/syscall_emul.hh
+++ b/src/sim/syscall_emul.hh
@@ -1138,7 +1138,7 @@ writevFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
if (result < 0)
return -errno;
- return 0;
+ return result;
}