mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 08:39:37 -05:00
Restore missing LAZY_LOCKS semicolon.
Lost in C90 compat commit c5dad7a6d0.
This commit is contained in:
parent
90ed553301
commit
ed0fc55fd3
1 changed files with 1 additions and 1 deletions
|
|
@ -292,7 +292,7 @@ typedef ID txnid_t;
|
|||
#define LAZY_RWLOCK_UNLOCK(x) pthread_rwlock_unlock(x)
|
||||
#define LAZY_RWLOCK_WRLOCK(x) pthread_rwlock_wrlock(x)
|
||||
#define LAZY_RWLOCK_RDLOCK(x) pthread_rwlock_rdlock(x)
|
||||
#define LAZY_RWLOCK_DEF(x) pthread_rwlock_t x
|
||||
#define LAZY_RWLOCK_DEF(x) pthread_rwlock_t x;
|
||||
#define LAZY_RWLOCK_INIT(x,y) pthread_rwlock_init(x,y)
|
||||
#define LAZY_RWLOCK_DESTROY(x) pthread_rwlock_destroy(x)
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue