diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2002-04-30 15:00:48 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2002-04-30 15:00:48 +0000 |
commit | c98047f62764eab650f7495e50d0e1d63d53ac88 (patch) | |
tree | 3f26e1884beacb4fe6042fe60ca2bd7e093c5f79 /otherlibs/win32unix/dup.c | |
parent | 044ac150e8b5763047b77757e9144a920fb49a42 (diff) |
Meilleure distinction handle/socket. Ajout lockf. Revu rename.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@4765 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/win32unix/dup.c')
-rw-r--r-- | otherlibs/win32unix/dup.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/otherlibs/win32unix/dup.c b/otherlibs/win32unix/dup.c index f65a4e0c4..de2ea7449 100644 --- a/otherlibs/win32unix/dup.c +++ b/otherlibs/win32unix/dup.c @@ -19,12 +19,16 @@ CAMLprim value unix_dup(value fd) { HANDLE newh; + value newfd; + int kind = Descr_kind_val(fd); if (! DuplicateHandle(GetCurrentProcess(), Handle_val(fd), GetCurrentProcess(), &newh, 0L, TRUE, DUPLICATE_SAME_ACCESS)) { win32_maperr(GetLastError()); return -1; } - return win_alloc_handle(newh); + newfd = win_alloc_handle(newh); + Descr_kind_val(newfd) = kind; + return newfd; } |