changeset db7e5f2778cf in /z/repo/m5
details: http://repo.m5sim.org/m5?cmd=changeset;node=db7e5f2778cf
description:
        syscall: Fix conversion of the stat64 buffer during system calls.

diffstat:

1 file changed, 1 insertion(+), 1 deletion(-)
src/sim/syscall_emul.hh |    2 +-

diffs (12 lines):

diff -r af13eb1b7f81 -r db7e5f2778cf src/sim/syscall_emul.hh
--- a/src/sim/syscall_emul.hh   Sat Oct 24 10:53:58 2009 -0700
+++ b/src/sim/syscall_emul.hh   Sat Oct 24 10:53:58 2009 -0700
@@ -469,7 +469,7 @@
 {
     typedef TypedBufferArg<typename OS::tgt_stat64> tgt_stat_buf;
     tgt_stat_buf tgt(addr);
-    convertStatBuf<tgt_stat_buf, hst_stat64>(tgt, host, fakeTTY);
+    convertStat64Buf<tgt_stat_buf, hst_stat64>(tgt, host, fakeTTY);
     tgt.copyOut(mem);
 }
 
_______________________________________________
m5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/m5-dev

Reply via email to