summaryrefslogtreecommitdiffstats
path: root/otherlibs/win32unix/unixsupport.c
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2011-07-23 10:07:25 +0000
committerXavier Leroy <xavier.leroy@inria.fr>2011-07-23 10:07:25 +0000
commitf90ddc8c22079e5f54c9c21f633c0d829f3218a2 (patch)
tree9b7e1dc7272fa1b553d5ea980973d9b22a9db7be /otherlibs/win32unix/unixsupport.c
parent8f5e85913493f813154079639c5c42d44fb11525 (diff)
PR#5290: added hash functions for channels, nats, mutexes, conditions.
Also: added "custom_compare_ext_default" to all struct custom_operations: default initialization to 0 did what we want, but explicit initialization better documents the C sources. git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@11143 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/win32unix/unixsupport.c')
-rw-r--r--otherlibs/win32unix/unixsupport.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/otherlibs/win32unix/unixsupport.c b/otherlibs/win32unix/unixsupport.c
index 2f545c19f..45d689ff6 100644
--- a/otherlibs/win32unix/unixsupport.c
+++ b/otherlibs/win32unix/unixsupport.c
@@ -44,7 +44,8 @@ static struct custom_operations win_handle_ops = {
win_handle_compare,
win_handle_hash,
custom_serialize_default,
- custom_deserialize_default
+ custom_deserialize_default,
+ custom_compare_ext_default
};
value win_alloc_handle(HANDLE h)