diff options
author | Steve Reinhardt <steve.reinhardt@amd.com> | 2011-10-22 22:30:07 -0700 |
---|---|---|
committer | Steve Reinhardt <steve.reinhardt@amd.com> | 2011-10-22 22:30:07 -0700 |
commit | 4d5f2c28a88f83d390e80407f55a8a02ead33878 (patch) | |
tree | 59f8aca2bd6995a396aade765156272998fc8bbf /src/arch/power | |
parent | c6dd122feef8cfb4785b8d45f40907bd6c73e04a (diff) | |
download | gem5-4d5f2c28a88f83d390e80407f55a8a02ead33878.tar.xz |
syscall_emul: implement MAP_FIXED option to mmap()
Diffstat (limited to 'src/arch/power')
-rw-r--r-- | src/arch/power/linux/linux.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/arch/power/linux/linux.hh b/src/arch/power/linux/linux.hh index 1bfc9cbd8..45ca048a0 100644 --- a/src/arch/power/linux/linux.hh +++ b/src/arch/power/linux/linux.hh @@ -127,6 +127,7 @@ class PowerLinux : public Linux /// For mmap(). static const unsigned TGT_MAP_ANONYMOUS = 0x20; + static const unsigned TGT_MAP_FIXED = 0x10; //@{ /// ioctl() command codes. |