[reflection] Fix MethodInfo.GetBaseDefinition() for open constructed base types.
[mono.git] / mono / io-layer / semaphore-private.h
index 43fbe1b0525948c8fba4abd8fc5604574d9309b7..8414f4e9205266daca7305346e1f59a15f6ddd93 100644 (file)
@@ -14,6 +14,7 @@
 #include <glib.h>
 
 extern struct _WapiHandleOps _wapi_sem_ops;
+extern struct _WapiHandleOps _wapi_namedsem_ops;
 
 extern void _wapi_sem_details (gpointer handle_info);
 
@@ -24,4 +25,11 @@ struct _WapiHandle_sem
        gint32 max;
 };
 
+struct _WapiHandle_namedsem
+{
+       WapiSharedNamespace sharedns;
+       guint32 val;
+       gint32 max;
+};
+
 #endif /* _WAPI_SEMAPHORE_PRIVATE_H_ */