diff options
author | Ali Saidi <Ali.Saidi@arm.com> | 2009-11-14 11:49:01 -0600 |
---|---|---|
committer | Ali Saidi <Ali.Saidi@arm.com> | 2009-11-14 11:49:01 -0600 |
commit | 4e9ce1805e3bbc6a6085502e94e0298eada77113 (patch) | |
tree | dc0c094220e16701dec1df1c647362a25bca744f /src/sim/syscall_emul.hh | |
parent | 48bc573f5f9709480da458e3c4627f7b7afd38f4 (diff) | |
download | gem5-4e9ce1805e3bbc6a6085502e94e0298eada77113.tar.xz |
SE: Fix SE mode OS X compilation.
Diffstat (limited to 'src/sim/syscall_emul.hh')
-rw-r--r-- | src/sim/syscall_emul.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sim/syscall_emul.hh b/src/sim/syscall_emul.hh index 27c26afb0..66e800183 100644 --- a/src/sim/syscall_emul.hh +++ b/src/sim/syscall_emul.hh @@ -1187,7 +1187,7 @@ timesFunc(SyscallDesc *desc, int callnum, LiveProcess *process, TypedBufferArg<typename OS::tms> bufp(process->getSyscallArg(tc, index)); // Fill in the time structure (in clocks) - int64_t clocks = curTick * OS::_SC_CLK_TCK / Clock::Int::s; + int64_t clocks = curTick * OS::M5_SC_CLK_TCK / Clock::Int::s; bufp->tms_utime = clocks; bufp->tms_stime = 0; bufp->tms_cutime = 0; |