/* * semaphore-private.h: Private definitions for semaphore handles * * Author: * Dick Porter (dick@ximian.com) * * (C) 2002 Ximian, Inc. */ #ifndef _WAPI_SEMAPHORE_PRIVATE_H_ #define _WAPI_SEMAPHORE_PRIVATE_H_ #include #include extern struct _WapiHandleOps _wapi_sem_ops; /* emulate sem_t, so that we can prod the internal state more easily */ struct _WapiHandle_sem { guint32 val; gint32 max; }; struct _WapiHandlePrivate_sem { int dummy; }; #endif /* _WAPI_SEMAPHORE_PRIVATE_H_ */