89{
90 sigjmp_buf local_sigjmp_buf;
92 int left_till_hibernate;
93 bool hibernating;
94
95 Assert(startup_data_len == 0);
96
99
100
101
102
103
104
105
109
114
115
116
117
119
120
121
122
123
124
125
127 "Wal Writer",
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149 if (sigsetjmp(local_sigjmp_buf, 1) != 0)
150 {
151
153
154
156
157
159
160
161
162
163
164
175
176
177
178
179
182
183
185
186
188
189
190
191
192
193
195 }
196
197
199
200
201
202
204
205
206
207
209 hibernating = false;
211
212
213
214
215
217
218
219
220
221 for (;;)
222 {
223 long cur_timeout;
224
225
226
227
228
229
230
231
232
233
234 if (hibernating != (left_till_hibernate <= 1))
235 {
236 hibernating = (left_till_hibernate <= 1);
238 }
239
240
242
243
245
246
247
248
249
252 else if (left_till_hibernate > 0)
253 left_till_hibernate--;
254
255
257
258
259
260
261
262
263 if (left_till_hibernate > 0)
265 else
267
270 cur_timeout,
271 WAIT_EVENT_WAL_WRITER_MAIN);
272 }
273}
void pgaio_error_cleanup(void)
void AuxiliaryProcessMainCommon(void)
void AtEOXact_Buffers(bool isCommit)
bool ConditionVariableCancelSleep(void)
void AtEOXact_HashTables(bool isCommit)
void EmitErrorReport(void)
ErrorContextCallback * error_context_stack
void FlushErrorState(void)
sigjmp_buf * PG_exception_stack
void AtEOXact_Files(bool isCommit)
Assert(PointerIsAligned(start, uint64))
void SignalHandlerForShutdownRequest(SIGNAL_ARGS)
void ProcessMainLoopInterrupts(void)
void SignalHandlerForConfigReload(SIGNAL_ARGS)
void ResetLatch(Latch *latch)
int WaitLatch(Latch *latch, int wakeEvents, long timeout, uint32 wait_event_info)
void LWLockReleaseAll(void)
void MemoryContextReset(MemoryContext context)
MemoryContext TopMemoryContext
#define AllocSetContextCreate
#define ALLOCSET_DEFAULT_SIZES
#define RESUME_INTERRUPTS()
#define HOLD_INTERRUPTS()
BackendType MyBackendType
static MemoryContext MemoryContextSwitchTo(MemoryContext context)
void pgstat_report_wal(bool force)
void procsignal_sigusr1_handler(SIGNAL_ARGS)
void ReleaseAuxProcessResources(bool isCommit)
void pg_usleep(long microsec)
static void pgstat_report_wait_end(void)
#define WL_EXIT_ON_PM_DEATH
#define LOOPS_UNTIL_HIBERNATE
void SetWalWriterSleeping(bool sleeping)
bool XLogBackgroundFlush(void)