From: Brandon Potter Date: Thu, 15 Dec 2016 18:14:41 +0000 (-0500) Subject: syscall_emul: extend sysinfo system call to include mem_unit X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4ff1b165d007c50c0c4700eb8ecafa1e700bc7aa;p=gem5.git syscall_emul: extend sysinfo system call to include mem_unit --- diff --git a/src/sim/syscall_emul.hh b/src/sim/syscall_emul.hh index c11e9865f..53da9197b 100644 --- a/src/sim/syscall_emul.hh +++ b/src/sim/syscall_emul.hh @@ -775,8 +775,9 @@ sysinfoFunc(SyscallDesc *desc, int callnum, LiveProcess *process, TypedBufferArg sysinfo(process->getSyscallArg(tc, index)); - sysinfo->uptime=seconds_since_epoch; - sysinfo->totalram=process->system->memSize(); + sysinfo->uptime = seconds_since_epoch; + sysinfo->totalram = process->system->memSize(); + sysinfo->mem_unit = 1; sysinfo.copyOut(tc->getMemProxy());