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