PostgreSQL Source Code
git master
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
c
d
g
h
i
k
l
m
p
r
s
t
Functions
Variables
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
Data Fields
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
c
d
f
h
i
n
o
p
r
s
t
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
Files
File List
Globals
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
•
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Pages
wait_classes.h
Go to the documentation of this file.
1
/*-------------------------------------------------------------------------
2
* wait_classes.h
3
* Definitions related to wait event classes
4
*
5
* Copyright (c) 2001-2025, PostgreSQL Global Development Group
6
*
7
* src/include/utils/wait_classes.h
8
* ----------
9
*/
10
#ifndef WAIT_CLASSES_H
11
#define WAIT_CLASSES_H
12
13
14
/* ----------
15
* Wait Classes
16
* ----------
17
*/
18
#define PG_WAIT_LWLOCK 0x01000000U
19
#define PG_WAIT_LOCK 0x03000000U
20
#define PG_WAIT_BUFFERPIN 0x04000000U
21
#define PG_WAIT_ACTIVITY 0x05000000U
22
#define PG_WAIT_CLIENT 0x06000000U
23
#define PG_WAIT_EXTENSION 0x07000000U
24
#define PG_WAIT_IPC 0x08000000U
25
#define PG_WAIT_TIMEOUT 0x09000000U
26
#define PG_WAIT_IO 0x0A000000U
27
#define PG_WAIT_INJECTIONPOINT 0x0B000000U
28
29
#endif
/* WAIT_CLASSES_H */
src
include
utils
wait_classes.h
Generated on Sat May 31 2025 06:13:28 for PostgreSQL Source Code by
1.9.4