Revert SIGUSR1 multiplexing patch, per Tom's objection.
[PostgreSQL.git] / src / include / storage / proc.h
blobde80967653f0238dbd1488c97c5810f7302eb949
1 /*-------------------------------------------------------------------------
3 * proc.h
4 * per-process shared memory data structures
7 * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * $PostgreSQL$
12 *-------------------------------------------------------------------------
14 #ifndef _PROC_H_
15 #define _PROC_H_
17 #include "storage/lock.h"
18 #include "storage/pg_sema.h"
22 * Each backend advertises up to PGPROC_MAX_CACHED_SUBXIDS TransactionIds
23 * for non-aborted subtransactions of its current top transaction. These
24 * have to be treated as running XIDs by other backends.
26 * We also keep track of whether the cache overflowed (ie, the transaction has
27 * generated at least one subtransaction that didn't fit in the cache).
28 * If none of the caches have overflowed, we can assume that an XID that's not
29 * listed anywhere in the PGPROC array is not a running transaction. Else we
30 * have to look at pg_subtrans.
32 #define PGPROC_MAX_CACHED_SUBXIDS 64 /* XXX guessed-at value */
34 struct XidCache
36 bool overflowed;
37 int nxids;
38 TransactionId xids[PGPROC_MAX_CACHED_SUBXIDS];
41 /* Flags for PGPROC->vacuumFlags */
42 #define PROC_IS_AUTOVACUUM 0x01 /* is it an autovac worker? */
43 #define PROC_IN_VACUUM 0x02 /* currently running lazy vacuum */
44 #define PROC_IN_ANALYZE 0x04 /* currently running analyze */
45 #define PROC_VACUUM_FOR_WRAPAROUND 0x08 /* set by autovac only */
47 /* flags reset at EOXact */
48 #define PROC_VACUUM_STATE_MASK (0x0E)
51 * Each backend has a PGPROC struct in shared memory. There is also a list of
52 * currently-unused PGPROC structs that will be reallocated to new backends.
54 * links: list link for any list the PGPROC is in. When waiting for a lock,
55 * the PGPROC is linked into that lock's waitProcs queue. A recycled PGPROC
56 * is linked into ProcGlobal's freeProcs list.
58 * Note: twophase.c also sets up a dummy PGPROC struct for each currently
59 * prepared transaction. These PGPROCs appear in the ProcArray data structure
60 * so that the prepared transactions appear to be still running and are
61 * correctly shown as holding locks. A prepared transaction PGPROC can be
62 * distinguished from a real one at need by the fact that it has pid == 0.
63 * The semaphore and lock-activity fields in a prepared-xact PGPROC are unused,
64 * but its myProcLocks[] lists are valid.
66 struct PGPROC
68 /* proc->links MUST BE FIRST IN STRUCT (see ProcSleep,ProcWakeup,etc) */
69 SHM_QUEUE links; /* list link if process is in a list */
71 PGSemaphoreData sem; /* ONE semaphore to sleep on */
72 int waitStatus; /* STATUS_WAITING, STATUS_OK or STATUS_ERROR */
74 LocalTransactionId lxid; /* local id of top-level transaction currently
75 * being executed by this proc, if running;
76 * else InvalidLocalTransactionId */
78 TransactionId xid; /* id of top-level transaction currently being
79 * executed by this proc, if running and XID
80 * is assigned; else InvalidTransactionId */
82 TransactionId xmin; /* minimal running XID as it was when we were
83 * starting our xact, excluding LAZY VACUUM:
84 * vacuum must not remove tuples deleted by
85 * xid >= xmin ! */
87 int pid; /* This backend's process id, or 0 */
88 BackendId backendId; /* This backend's backend ID (if assigned) */
89 Oid databaseId; /* OID of database this backend is using */
90 Oid roleId; /* OID of role using this backend */
92 bool inCommit; /* true if within commit critical section */
94 uint8 vacuumFlags; /* vacuum-related flags, see above */
96 /* Info about LWLock the process is currently waiting for, if any. */
97 bool lwWaiting; /* true if waiting for an LW lock */
98 bool lwExclusive; /* true if waiting for exclusive access */
99 struct PGPROC *lwWaitLink; /* next waiter for same LW lock */
101 /* Info about lock the process is currently waiting for, if any. */
102 /* waitLock and waitProcLock are NULL if not currently waiting. */
103 LOCK *waitLock; /* Lock object we're sleeping on ... */
104 PROCLOCK *waitProcLock; /* Per-holder info for awaited lock */
105 LOCKMODE waitLockMode; /* type of lock we're waiting for */
106 LOCKMASK heldLocks; /* bitmask for lock types already held on this
107 * lock object by this backend */
110 * All PROCLOCK objects for locks held or awaited by this backend are
111 * linked into one of these lists, according to the partition number of
112 * their lock.
114 SHM_QUEUE myProcLocks[NUM_LOCK_PARTITIONS];
116 struct XidCache subxids; /* cache for subtransaction XIDs */
119 /* NOTE: "typedef struct PGPROC PGPROC" appears in storage/lock.h. */
122 extern PGDLLIMPORT PGPROC *MyProc;
126 * There is one ProcGlobal struct for the whole database cluster.
128 typedef struct PROC_HDR
130 /* Head of list of free PGPROC structures */
131 PGPROC *freeProcs;
132 /* Head of list of autovacuum's free PGPROC structures */
133 PGPROC *autovacFreeProcs;
134 /* Current shared estimate of appropriate spins_per_delay value */
135 int spins_per_delay;
136 } PROC_HDR;
139 * We set aside some extra PGPROC structures for auxiliary processes,
140 * ie things that aren't full-fledged backends but need shmem access.
142 #define NUM_AUXILIARY_PROCS 3
145 /* configurable options */
146 extern int DeadlockTimeout;
147 extern int StatementTimeout;
148 extern bool log_lock_waits;
150 extern volatile bool cancel_from_timeout;
154 * Function Prototypes
156 extern int ProcGlobalSemas(void);
157 extern Size ProcGlobalShmemSize(void);
158 extern void InitProcGlobal(void);
159 extern void InitProcess(void);
160 extern void InitProcessPhase2(void);
161 extern void InitAuxiliaryProcess(void);
162 extern bool HaveNFreeProcs(int n);
163 extern void ProcReleaseLocks(bool isCommit);
165 extern void ProcQueueInit(PROC_QUEUE *queue);
166 extern int ProcSleep(LOCALLOCK *locallock, LockMethod lockMethodTable);
167 extern PGPROC *ProcWakeup(PGPROC *proc, int waitStatus);
168 extern void ProcLockWakeup(LockMethod lockMethodTable, LOCK *lock);
169 extern void LockWaitCancel(void);
171 extern void ProcWaitForSignal(void);
172 extern void ProcSendSignal(int pid);
174 extern bool enable_sig_alarm(int delayms, bool is_statement_timeout);
175 extern bool disable_sig_alarm(bool is_statement_timeout);
176 extern void handle_sig_alarm(SIGNAL_ARGS);
178 #endif /* PROC_H */