mirror of
https://github.com/postgres/postgres.git
synced 2025-11-07 19:06:32 +03:00
Migrate PGPROC's backendLock into PGPROC itself, using a new tranche.
Previously, each PGPROC's backendLock was part of the main tranche, and the PGPROC just contained a pointer. Now, the actual LWLock is part of the PGPROC. As with previous, similar patches, this makes it significantly easier to identify these lwlocks in LWLOCK_STATS or Trace_lwlocks output and improves modularity. Author: Ildus Kurbangaliev Reviewed-by: Amit Kapila, Robert Haas
This commit is contained in:
@@ -226,7 +226,7 @@ InitProcGlobal(void)
|
||||
{
|
||||
PGSemaphoreCreate(&(procs[i].sem));
|
||||
InitSharedLatch(&(procs[i].procLatch));
|
||||
procs[i].backendLock = LWLockAssign();
|
||||
LWLockInitialize(&(procs[i].backendLock), LWTRANCHE_PROC);
|
||||
}
|
||||
procs[i].pgprocno = i;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user