From 6d336c5635c3ae0bf0d70309227f8e9e127bb9d8 Mon Sep 17 00:00:00 2001 From: Giacomo Travaglini Date: Tue, 28 Sep 2021 09:41:38 +0100 Subject: [PATCH] arch-arm: Add futimesat implementation to the Syscall Table Change-Id: I3096c5c1ed38cd4cfe9ca6e3c570f408557769eb Signed-off-by: Giacomo Travaglini Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/51060 Tested-by: kokoro Reviewed-by: Bobby R. Bruce Reviewed-by: Richard Cooper Maintainer: Bobby R. Bruce --- src/arch/arm/linux/se_workload.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/arch/arm/linux/se_workload.cc b/src/arch/arm/linux/se_workload.cc index 028001b43a..88f34d6df9 100644 --- a/src/arch/arm/linux/se_workload.cc +++ b/src/arch/arm/linux/se_workload.cc @@ -448,7 +448,7 @@ class SyscallTable32 : public SyscallDescTable { base + 323, "mkdirat", mkdiratFunc }, { base + 324, "mknodat", mknodatFunc }, { base + 325, "fchownat", fchownatFunc }, - { base + 326, "futimesat" }, + { base + 326, "futimesat", futimesatFunc }, { base + 327, "fstatat64" }, { base + 328, "unlinkat", unlinkatFunc }, { base + 329, "renameat", renameatFunc }, @@ -804,7 +804,7 @@ class SyscallTable64 : public SyscallDescTable #else { base + 1065, "getdents" }, #endif - { base + 1066, "futimesat" }, + { base + 1066, "futimesat", futimesatFunc }, { base + 1067, "select" }, { base + 1068, "poll" }, { base + 1069, "epoll_wait" },