diff options
author | Alain Frisch <alain@frisch.fr> | 2011-12-13 16:18:13 +0000 |
---|---|---|
committer | Alain Frisch <alain@frisch.fr> | 2011-12-13 16:18:13 +0000 |
commit | 84dd8601e0f37301b82aa035ceac32b0264b4748 (patch) | |
tree | 3ca62ca6c41424dad3b69db4f49fbb410716c6cc /otherlibs/win32unix/unix.ml | |
parent | d187828b8cab7db61101e9cea09fb035df96cf74 (diff) |
#5420: adding a O_SHARE_DELETE flag to Unix.openfile, for enabling FILE_SHARE_DELETE mode under Windows (ignored under Unix).
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@11304 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/win32unix/unix.ml')
-rw-r--r-- | otherlibs/win32unix/unix.ml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/otherlibs/win32unix/unix.ml b/otherlibs/win32unix/unix.ml index c513ee4da..56d33bde8 100644 --- a/otherlibs/win32unix/unix.ml +++ b/otherlibs/win32unix/unix.ml @@ -170,6 +170,7 @@ type open_flag = | O_DSYNC | O_SYNC | O_RSYNC + | O_SHARE_DELETE type file_perm = int |