1 /*
2   +----------------------------------------------------------------------+
3   | APC                                                                  |
4   +----------------------------------------------------------------------+
5   | Copyright (c) 2006-2011 The PHP Group                                |
6   +----------------------------------------------------------------------+
7   | This source file is subject to version 3.01 of the PHP license,      |
8   | that is bundled with this package in the file LICENSE, and is        |
9   | available through the world-wide-web at the following url:           |
10   | http://www.php.net/license/3_01.txt                                  |
11   | If you did not receive a copy of the PHP license and are unable to   |
12   | obtain it through the world-wide-web, please send a note to          |
13   | license@php.net so we can mail you a copy immediately.               |
14   +----------------------------------------------------------------------+
15   | Authors: Pierre Joye <pierre@php.net>                                |
16   +----------------------------------------------------------------------+
17  */
18 
19 #ifndef APC_WINDOWS_CS_RWLOCK_H
20 #define APC_WINDOWS_CS_RWLOCK_H
21 
22 #include "apc.h"
23 
24 #ifdef APC_SRWLOCK_KERNEL
25 
26 typedef SRWLOCK apc_windows_cs_rwlock_t;
27 
28 apc_windows_cs_rwlock_t *apc_windows_cs_create(apc_windows_cs_rwlock_t *lock);
29 void apc_windows_cs_destroy(apc_windows_cs_rwlock_t *lock);
30 void apc_windows_cs_lock(apc_windows_cs_rwlock_t *lock);
31 void apc_windows_cs_rdlock(apc_windows_cs_rwlock_t *lock);
32 void apc_windows_cs_unlock_rd(apc_windows_cs_rwlock_t *lock);
33 void apc_windows_cs_unlock_wr(apc_windows_cs_rwlock_t *lock);
34 #endif
35 
36 #endif
37 
38 /*
39  * Local variables:
40  * tab-width: 4
41  * c-basic-offset: 4
42  * End:
43  * vim>600: noexpandtab sw=4 ts=4 sts=4 fdm=marker
44  * vim<600: noexpandtab sw=4 ts=4 sts=4
45  */
46