diff options
author | Bruce Momjian <bruce@momjian.us> | 2005-10-15 02:49:52 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2005-10-15 02:49:52 +0000 |
commit | 1dc34982511d91ef8a2b71bdcb870f067c1b3da9 (patch) | |
tree | 1046adab1d4b964e0c38afeec0ee6546f61d9a8a /src/include/storage/proc.h | |
parent | 790c01d28099587bbe2c623d4389b62ee49b1dee (diff) | |
download | postgresql-1dc34982511d91ef8a2b71bdcb870f067c1b3da9.tar.gz postgresql-1dc34982511d91ef8a2b71bdcb870f067c1b3da9.zip |
Standard pgindent run for 8.1.
Diffstat (limited to 'src/include/storage/proc.h')
-rw-r--r-- | src/include/storage/proc.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/include/storage/proc.h b/src/include/storage/proc.h index b915f78035e..4cba391048e 100644 --- a/src/include/storage/proc.h +++ b/src/include/storage/proc.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/storage/proc.h,v 1.83 2005/10/11 20:41:32 tgl Exp $ + * $PostgreSQL: pgsql/src/include/storage/proc.h,v 1.84 2005/10/15 02:49:46 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -65,9 +65,9 @@ struct PGPROC TransactionId xid; /* transaction currently being executed by * this proc */ - TransactionId xmin; /* minimal running XID as it was when we - * were starting our xact: vacuum must not - * remove tuples deleted by xid >= xmin ! */ + TransactionId xmin; /* minimal running XID as it was when we were + * starting our xact: vacuum must not remove + * tuples deleted by xid >= xmin ! */ int pid; /* This backend's process id, or 0 */ Oid databaseId; /* OID of database this backend is using */ @@ -83,11 +83,11 @@ struct PGPROC LOCK *waitLock; /* Lock object we're sleeping on ... */ PROCLOCK *waitProcLock; /* Per-holder info for awaited lock */ LOCKMODE waitLockMode; /* type of lock we're waiting for */ - LOCKMASK heldLocks; /* bitmask for lock types already held on - * this lock object by this backend */ + LOCKMASK heldLocks; /* bitmask for lock types already held on this + * lock object by this backend */ - SHM_QUEUE procLocks; /* list of PROCLOCK objects for locks held - * or awaited by this backend */ + SHM_QUEUE procLocks; /* list of PROCLOCK objects for locks held or + * awaited by this backend */ struct XidCache subxids; /* cache for subtransaction XIDs */ }; |