LaurentMazare / npy-ocaml

Numpy file format support for ocaml.
Apache License 2.0
41 stars 10 forks source link

Use O_RDWR for shared arrays #10

Closed crackcomm closed 2 years ago

crackcomm commented 2 years ago

In order to use MAP_SHARED flag we need to open file with write permissions, otherwise ~shared:true returns EACCESS error.

LaurentMazare commented 2 years ago

Thanks!