Giacomo Travaglini has submitted this change. ( https://gem5-review.googlesource.com/c/public/gem5/+/51549 )

Change subject: arch-arm: Add chdir implementation to the Syscall Table
......................................................................

arch-arm: Add chdir implementation to the Syscall Table

Signed-off-by: Giacomo Travaglini <[email protected]>
Change-Id: I584d9269b0445347dd65071f7fc5569c8ac24b89
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/51549
Reviewed-by: Jason Lowe-Power <[email protected]>
Maintainer: Jason Lowe-Power <[email protected]>
Tested-by: kokoro <[email protected]>
---
M src/arch/arm/linux/se_workload.cc
1 file changed, 16 insertions(+), 2 deletions(-)

Approvals:
  Jason Lowe-Power: Looks good to me, approved; Looks good to me, approved
  kokoro: Regressions pass




diff --git a/src/arch/arm/linux/se_workload.cc b/src/arch/arm/linux/se_workload.cc
index 3755dec..b8236ec 100644
--- a/src/arch/arm/linux/se_workload.cc
+++ b/src/arch/arm/linux/se_workload.cc
@@ -158,7 +158,7 @@
         {  base + 9, "link" },
         { base + 10, "unlink", unlinkFunc },
         { base + 11, "execve", execveFunc<ArmLinux32> },
-        { base + 12, "chdir" },
+        { base + 12, "chdir", chdirFunc },
         { base + 13, "time", timeFunc<ArmLinux32> },
         { base + 14, "mknod" },
         { base + 15, "chmod", chmodFunc<ArmLinux32> },
@@ -547,7 +547,7 @@
         {   base + 46, "ftruncate64", ftruncate64Func },
         {   base + 47, "fallocate", fallocateFunc<ArmLinux64> },
         {   base + 48, "faccessat", faccessatFunc<ArmLinux64> },
-        {   base + 49, "chdir" },
+        {   base + 49, "chdir", chdirFunc },
         {   base + 50, "fchdir" },
         {   base + 51, "chroot" },
         {   base + 52, "fchmod" },

--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/51549
To unsubscribe, or for help writing mail filters, visit https://gem5-review.googlesource.com/settings

Gerrit-Project: public/gem5
Gerrit-Branch: develop
Gerrit-Change-Id: I584d9269b0445347dd65071f7fc5569c8ac24b89
Gerrit-Change-Number: 51549
Gerrit-PatchSet: 2
Gerrit-Owner: Giacomo Travaglini <[email protected]>
Gerrit-Reviewer: Andreas Sandberg <[email protected]>
Gerrit-Reviewer: Giacomo Travaglini <[email protected]>
Gerrit-Reviewer: Jason Lowe-Power <[email protected]>
Gerrit-Reviewer: kokoro <[email protected]>
Gerrit-MessageType: merged
_______________________________________________
gem5-dev mailing list -- [email protected]
To unsubscribe send an email to [email protected]
%(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s

Reply via email to