|
Last change
on this file since 1204 was
1204,
checked in by moo, 5 months ago
|
|
finished improve stability on threaded env
|
-
Property svn:eol-style set to
native
|
|
File size:
520 bytes
|
| Line | |
|---|
| 1 | #ifndef XC_LOCK_H_1913F3DED68715D7CDA5A055E79FE0FF |
|---|
| 2 | #define XC_LOCK_H_1913F3DED68715D7CDA5A055E79FE0FF |
|---|
| 3 | |
|---|
| 4 | #if _MSC_VER > 1000 |
|---|
| 5 | #pragma once |
|---|
| 6 | #endif /* _MSC_VER > 1000 */ |
|---|
| 7 | |
|---|
| 8 | #include <stdlib.h> |
|---|
| 9 | |
|---|
| 10 | typedef struct _xc_lock_t xc_lock_t; |
|---|
| 11 | |
|---|
| 12 | size_t xc_lock_size(void); |
|---|
| 13 | xc_lock_t *xc_lock_init(xc_lock_t *lck, const char *pathname, unsigned char interprocess /* only with ZTS */); |
|---|
| 14 | void xc_lock_destroy(xc_lock_t *lck); |
|---|
| 15 | void xc_lock(xc_lock_t *lck); |
|---|
| 16 | void xc_unlock(xc_lock_t *lck); |
|---|
| 17 | |
|---|
| 18 | #endif /* XC_LOCK_H_1913F3DED68715D7CDA5A055E79FE0FF */ |
|---|
Note: See
TracBrowser
for help on using the repository browser.