Sha256: 038ae3617b6e470faeebdf30d30a0a3b99ae593836d97cda5a91990d055f8ef8
Contents?: true
Size: 354 Bytes
Versions: 2
Compression:
Stored size: 354 Bytes
Contents
/* * Copyright (C) Ruslan Ermilov * Copyright (C) Nginx, Inc. */ #ifndef _NGX_RWLOCK_H_INCLUDED_ #define _NGX_RWLOCK_H_INCLUDED_ #include <ngx_config.h> #include <ngx_core.h> void ngx_rwlock_wlock(ngx_atomic_t *lock); void ngx_rwlock_rlock(ngx_atomic_t *lock); void ngx_rwlock_unlock(ngx_atomic_t *lock); #endif /* _NGX_RWLOCK_H_INCLUDED_ */
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
nginxtra-1.10.1.13 | vendor/nginx/src/core/ngx_rwlock.h |
nginxtra-1.10.1.12 | vendor/nginx/src/core/ngx_rwlock.h |