[Base] Handle exec R/W mapped file handles
This commit is contained in:
parent
660f8d7ba6
commit
b865e324c2
|
@ -72,6 +72,7 @@ FileMappingHandle CreateFileMappingHandle(std::wstring path, size_t length,
|
|||
oflag = O_RDONLY;
|
||||
break;
|
||||
case PageAccess::kReadWrite:
|
||||
case PageAccess::kExecuteReadWrite:
|
||||
oflag = O_RDWR;
|
||||
break;
|
||||
default:
|
||||
|
|
Loading…
Reference in New Issue