diff options
author | Mitch Hayenga <mitch.hayenga+gem5@gmail.com> | 2014-01-28 18:00:51 -0600 |
---|---|---|
committer | Mitch Hayenga <mitch.hayenga+gem5@gmail.com> | 2014-01-28 18:00:51 -0600 |
commit | b77ca57f8c16af5fc694ba376fc117e07bbba6cd (patch) | |
tree | b3035bdfb0ffbfac6d0fc672a7d0972c2085c5b4 /src | |
parent | 55a4ff5f04badfbd458aee48618920f7fa243014 (diff) | |
download | gem5-b77ca57f8c16af5fc694ba376fc117e07bbba6cd.tar.xz |
arm: Enable umask syscall in SE mode
Committed by: Nilay Vaish <nilay@cs.wisc.edu>
Diffstat (limited to 'src')
-rw-r--r-- | src/arch/arm/linux/process.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/arm/linux/process.cc b/src/arch/arm/linux/process.cc index e34a813ea..7f8f9ccd6 100644 --- a/src/arch/arm/linux/process.cc +++ b/src/arch/arm/linux/process.cc @@ -179,7 +179,7 @@ static SyscallDesc syscallDescs32[] = { /* 57 */ SyscallDesc("setpgid", unimplementedFunc), /* 58 */ SyscallDesc("unused#58", unimplementedFunc), /* 59 */ SyscallDesc("unused#59", unimplementedFunc), - /* 60 */ SyscallDesc("umask", unimplementedFunc), + /* 60 */ SyscallDesc("umask", umaskFunc), /* 61 */ SyscallDesc("chroot", unimplementedFunc), /* 62 */ SyscallDesc("ustat", unimplementedFunc), /* 63 */ SyscallDesc("dup2", unimplementedFunc), |