mirror of
https://github.com/postgres/postgres.git
synced 2025-09-02 04:21:28 +03:00
Fix misc typos.
Oskari Saarenmaa. Backpatch to stable branches where applicable.
This commit is contained in:
@@ -50,13 +50,13 @@ typedef struct LWLock
|
||||
slock_t mutex; /* Protects LWLock and queue of PGPROCs */
|
||||
uint16 tranche; /* tranche ID */
|
||||
|
||||
pg_atomic_uint32 state; /* state of exlusive/nonexclusive lockers */
|
||||
pg_atomic_uint32 state; /* state of exclusive/nonexclusive lockers */
|
||||
#ifdef LOCK_DEBUG
|
||||
pg_atomic_uint32 nwaiters; /* number of waiters */
|
||||
#endif
|
||||
dlist_head waiters; /* list of waiting PGPROCs */
|
||||
#ifdef LOCK_DEBUG
|
||||
struct PGPROC *owner; /* last exlusive owner of the lock */
|
||||
struct PGPROC *owner; /* last exclusive owner of the lock */
|
||||
#endif
|
||||
} LWLock;
|
||||
|
||||
|
Reference in New Issue
Block a user