summaryrefslogtreecommitdiff
path: root/src/arch/arm/linux
diff options
context:
space:
mode:
authorMitch Hayenga <mitch.hayenga+gem5@gmail.com>2013-01-08 08:54:07 -0500
committerMitch Hayenga <mitch.hayenga+gem5@gmail.com>2013-01-08 08:54:07 -0500
commit4a752b1655c531a2fd7d98dbe24239fed5261291 (patch)
treef950f5788bf2ee608d2364988b934e287d5a99e3 /src/arch/arm/linux
parentc7dbd5e7686bbb065dfe2a74b92f4d9463ddfa80 (diff)
downloadgem5-4a752b1655c531a2fd7d98dbe24239fed5261291.tar.xz
arm: add access syscall for ARM SE mode
This patch adds the "access" syscall for ARM SE as required by some spec2006 benchmarks.
Diffstat (limited to 'src/arch/arm/linux')
-rw-r--r--src/arch/arm/linux/process.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/arm/linux/process.cc b/src/arch/arm/linux/process.cc
index 088f9907e..169565a04 100644
--- a/src/arch/arm/linux/process.cc
+++ b/src/arch/arm/linux/process.cc
@@ -108,7 +108,7 @@ SyscallDesc ArmLinuxProcess::syscallDescs[] = {
/* 30 */ SyscallDesc("utime", unimplementedFunc),
/* 31 */ SyscallDesc("unused#31", unimplementedFunc),
/* 32 */ SyscallDesc("unused#32", unimplementedFunc),
- /* 33 */ SyscallDesc("access", unimplementedFunc),
+ /* 33 */ SyscallDesc("access", accessFunc),
/* 34 */ SyscallDesc("nice", unimplementedFunc),
/* 35 */ SyscallDesc("unused#35", unimplementedFunc),
/* 36 */ SyscallDesc("sync", unimplementedFunc),