PostgreSQL Source Code  git master
bgwriter.h File Reference
#include "storage/block.h"
#include "storage/relfilelocator.h"
#include "storage/smgr.h"
#include "storage/sync.h"
Include dependency graph for bgwriter.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void BackgroundWriterMain (void) pg_attribute_noreturn()
 
void CheckpointerMain (void) pg_attribute_noreturn()
 
void RequestCheckpoint (int flags)
 
void CheckpointWriteDelay (int flags, double progress)
 
bool ForwardSyncRequest (const FileTag *ftag, SyncRequestType type)
 
void AbsorbSyncRequests (void)
 
Size CheckpointerShmemSize (void)
 
void CheckpointerShmemInit (void)
 
bool FirstCallSinceLastCheckpoint (void)
 

Variables

PGDLLIMPORT int BgWriterDelay
 
PGDLLIMPORT int CheckPointTimeout
 
PGDLLIMPORT int CheckPointWarning
 
PGDLLIMPORT double CheckPointCompletionTarget
 

Function Documentation

◆ AbsorbSyncRequests()

void AbsorbSyncRequests ( void  )

Definition at line 1262 of file checkpointer.c.

1263 {
1264  CheckpointerRequest *requests = NULL;
1265  CheckpointerRequest *request;
1266  int n;
1267 
1268  if (!AmCheckpointerProcess())
1269  return;
1270 
1271  LWLockAcquire(CheckpointerCommLock, LW_EXCLUSIVE);
1272 
1273  /* Transfer stats counts into pending pgstats message */
1278 
1281 
1282  /*
1283  * We try to avoid holding the lock for a long time by copying the request
1284  * array, and processing the requests after releasing the lock.
1285  *
1286  * Once we have cleared the requests from shared memory, we have to PANIC
1287  * if we then fail to absorb them (eg, because our hashtable runs out of
1288  * memory). This is because the system cannot run safely if we are unable
1289  * to fsync what we have been told to fsync. Fortunately, the hashtable
1290  * is so small that the problem is quite unlikely to arise in practice.
1291  */
1293  if (n > 0)
1294  {
1295  requests = (CheckpointerRequest *) palloc(n * sizeof(CheckpointerRequest));
1296  memcpy(requests, CheckpointerShmem->requests, n * sizeof(CheckpointerRequest));
1297  }
1298 
1300 
1302 
1303  LWLockRelease(CheckpointerCommLock);
1304 
1305  for (request = requests; n > 0; request++, n--)
1306  RememberSyncRequest(&request->ftag, request->type);
1307 
1308  END_CRIT_SECTION();
1309 
1310  if (requests)
1311  pfree(requests);
1312 }
static CheckpointerShmemStruct * CheckpointerShmem
Definition: checkpointer.c:136
bool LWLockAcquire(LWLock *lock, LWLockMode mode)
Definition: lwlock.c:1195
void LWLockRelease(LWLock *lock)
Definition: lwlock.c:1808
@ LW_EXCLUSIVE
Definition: lwlock.h:116
void pfree(void *pointer)
Definition: mcxt.c:1456
void * palloc(Size size)
Definition: mcxt.c:1226
#define AmCheckpointerProcess()
Definition: miscadmin.h:455
#define START_CRIT_SECTION()
Definition: miscadmin.h:148
#define END_CRIT_SECTION()
Definition: miscadmin.h:150
PgStat_CheckpointerStats PendingCheckpointerStats
SyncRequestType type
Definition: checkpointer.c:109
CheckpointerRequest requests[FLEXIBLE_ARRAY_MEMBER]
Definition: checkpointer.c:133
PgStat_Counter buf_written_backend
Definition: pgstat.h:268
PgStat_Counter buf_fsync_backend
Definition: pgstat.h:269
void RememberSyncRequest(const FileTag *ftag, SyncRequestType type)
Definition: sync.c:492

References AmCheckpointerProcess, PgStat_CheckpointerStats::buf_fsync_backend, PgStat_CheckpointerStats::buf_written_backend, CheckpointerShmem, END_CRIT_SECTION, CheckpointerRequest::ftag, LW_EXCLUSIVE, LWLockAcquire(), LWLockRelease(), CheckpointerShmemStruct::num_backend_fsync, CheckpointerShmemStruct::num_backend_writes, CheckpointerShmemStruct::num_requests, palloc(), PendingCheckpointerStats, pfree(), RememberSyncRequest(), CheckpointerShmemStruct::requests, START_CRIT_SECTION, and CheckpointerRequest::type.

Referenced by CheckpointerMain(), CheckpointWriteDelay(), ProcessSyncRequests(), SyncPostCheckpoint(), and SyncPreCheckpoint().

◆ BackgroundWriterMain()

void BackgroundWriterMain ( void  )

Definition at line 91 of file bgwriter.c.

92 {
93  sigjmp_buf local_sigjmp_buf;
94  MemoryContext bgwriter_context;
95  bool prev_hibernate;
96  WritebackContext wb_context;
97 
98  /*
99  * Properly accept or ignore signals that might be sent to us.
100  */
102  pqsignal(SIGINT, SIG_IGN);
104  /* SIGQUIT handler was already set up by InitPostmasterChild */
109 
110  /*
111  * Reset some signals that are accepted by postmaster but not here
112  */
114 
115  /*
116  * We just started, assume there has been either a shutdown or
117  * end-of-recovery snapshot.
118  */
120 
121  /*
122  * Create a memory context that we will do all our work in. We do this so
123  * that we can reset the context during error recovery and thereby avoid
124  * possible memory leaks. Formerly this code just ran in
125  * TopMemoryContext, but resetting that would be a really bad idea.
126  */
127  bgwriter_context = AllocSetContextCreate(TopMemoryContext,
128  "Background Writer",
130  MemoryContextSwitchTo(bgwriter_context);
131 
133 
134  /*
135  * If an exception is encountered, processing resumes here.
136  *
137  * You might wonder why this isn't coded as an infinite loop around a
138  * PG_TRY construct. The reason is that this is the bottom of the
139  * exception stack, and so with PG_TRY there would be no exception handler
140  * in force at all during the CATCH part. By leaving the outermost setjmp
141  * always active, we have at least some chance of recovering from an error
142  * during error recovery. (If we get into an infinite loop thereby, it
143  * will soon be stopped by overflow of elog.c's internal state stack.)
144  *
145  * Note that we use sigsetjmp(..., 1), so that the prevailing signal mask
146  * (to wit, BlockSig) will be restored when longjmp'ing to here. Thus,
147  * signals other than SIGQUIT will be blocked until we complete error
148  * recovery. It might seem that this policy makes the HOLD_INTERRUPTS()
149  * call redundant, but it is not since InterruptPending might be set
150  * already.
151  */
152  if (sigsetjmp(local_sigjmp_buf, 1) != 0)
153  {
154  /* Since not using PG_TRY, must reset error stack by hand */
155  error_context_stack = NULL;
156 
157  /* Prevent interrupts while cleaning up */
158  HOLD_INTERRUPTS();
159 
160  /* Report the error to the server log */
161  EmitErrorReport();
162 
163  /*
164  * These operations are really just a minimal subset of
165  * AbortTransaction(). We don't have very many resources to worry
166  * about in bgwriter, but we do have LWLocks, buffers, and temp files.
167  */
170  UnlockBuffers();
172  AtEOXact_Buffers(false);
173  AtEOXact_SMgr();
174  AtEOXact_Files(false);
175  AtEOXact_HashTables(false);
176 
177  /*
178  * Now return to normal top-level context and clear ErrorContext for
179  * next time.
180  */
181  MemoryContextSwitchTo(bgwriter_context);
182  FlushErrorState();
183 
184  /* Flush any leaked data in the top-level context */
185  MemoryContextResetAndDeleteChildren(bgwriter_context);
186 
187  /* re-initialize to avoid repeated errors causing problems */
189 
190  /* Now we can allow interrupts again */
192 
193  /*
194  * Sleep at least 1 second after any error. A write error is likely
195  * to be repeated, and we don't want to be filling the error logs as
196  * fast as we can.
197  */
198  pg_usleep(1000000L);
199 
200  /*
201  * Close all open files after any error. This is helpful on Windows,
202  * where holding deleted files open causes various strange errors.
203  * It's not clear we need it elsewhere, but shouldn't hurt.
204  */
205  smgrcloseall();
206 
207  /* Report wait end here, when there is no further possibility of wait */
209  }
210 
211  /* We can now handle ereport(ERROR) */
212  PG_exception_stack = &local_sigjmp_buf;
213 
214  /*
215  * Unblock signals (they were blocked when the postmaster forked us)
216  */
217  sigprocmask(SIG_SETMASK, &UnBlockSig, NULL);
218 
219  /*
220  * Reset hibernation state after any error.
221  */
222  prev_hibernate = false;
223 
224  /*
225  * Loop forever
226  */
227  for (;;)
228  {
229  bool can_hibernate;
230  int rc;
231 
232  /* Clear any already-pending wakeups */
234 
236 
237  /*
238  * Do one cycle of dirty-buffer writing.
239  */
240  can_hibernate = BgBufferSync(&wb_context);
241 
242  /* Report pending statistics to the cumulative stats system */
244 
246  {
247  /*
248  * After any checkpoint, close all smgr files. This is so we
249  * won't hang onto smgr references to deleted files indefinitely.
250  */
251  smgrcloseall();
252  }
253 
254  /*
255  * Log a new xl_running_xacts every now and then so replication can
256  * get into a consistent state faster (think of suboverflowed
257  * snapshots) and clean up resources (locks, KnownXids*) more
258  * frequently. The costs of this are relatively low, so doing it 4
259  * times (LOG_SNAPSHOT_INTERVAL_MS) a minute seems fine.
260  *
261  * We assume the interval for writing xl_running_xacts is
262  * significantly bigger than BgWriterDelay, so we don't complicate the
263  * overall timeout handling but just assume we're going to get called
264  * often enough even if hibernation mode is active. It's not that
265  * important that LOG_SNAPSHOT_INTERVAL_MS is met strictly. To make
266  * sure we're not waking the disk up unnecessarily on an idle system
267  * we check whether there has been any WAL inserted since the last
268  * time we've logged a running xacts.
269  *
270  * We do this logging in the bgwriter as it is the only process that
271  * is run regularly and returns to its mainloop all the time. E.g.
272  * Checkpointer, when active, is barely ever in its mainloop and thus
273  * makes it hard to log regularly.
274  */
276  {
277  TimestampTz timeout = 0;
279 
282 
283  /*
284  * Only log if enough time has passed and interesting records have
285  * been inserted since the last snapshot. Have to compare with <=
286  * instead of < because GetLastImportantRecPtr() points at the
287  * start of a record, whereas last_snapshot_lsn points just past
288  * the end of the record.
289  */
290  if (now >= timeout &&
292  {
295  }
296  }
297 
298  /*
299  * Sleep until we are signaled or BgWriterDelay has elapsed.
300  *
301  * Note: the feedback control loop in BgBufferSync() expects that we
302  * will call it every BgWriterDelay msec. While it's not critical for
303  * correctness that that be exact, the feedback loop might misbehave
304  * if we stray too far from that. Hence, avoid loading this process
305  * down with latch events that are likely to happen frequently during
306  * normal operation.
307  */
308  rc = WaitLatch(MyLatch,
310  BgWriterDelay /* ms */ , WAIT_EVENT_BGWRITER_MAIN);
311 
312  /*
313  * If no latch event and BgBufferSync says nothing's happening, extend
314  * the sleep in "hibernation" mode, where we sleep for much longer
315  * than bgwriter_delay says. Fewer wakeups save electricity. When a
316  * backend starts using buffers again, it will wake us up by setting
317  * our latch. Because the extra sleep will persist only as long as no
318  * buffer allocations happen, this should not distort the behavior of
319  * BgBufferSync's control loop too badly; essentially, it will think
320  * that the system-wide idle interval didn't exist.
321  *
322  * There is a race condition here, in that a backend might allocate a
323  * buffer between the time BgBufferSync saw the alloc count as zero
324  * and the time we call StrategyNotifyBgWriter. While it's not
325  * critical that we not hibernate anyway, we try to reduce the odds of
326  * that by only hibernating when BgBufferSync says nothing's happening
327  * for two consecutive cycles. Also, we mitigate any possible
328  * consequences of a missed wakeup by not hibernating forever.
329  */
330  if (rc == WL_TIMEOUT && can_hibernate && prev_hibernate)
331  {
332  /* Ask for notification at next buffer allocation */
334  /* Sleep ... */
335  (void) WaitLatch(MyLatch,
338  WAIT_EVENT_BGWRITER_HIBERNATE);
339  /* Reset the notification request in case we timed out */
341  }
342 
343  prev_hibernate = can_hibernate;
344  }
345 }
sigset_t UnBlockSig
Definition: pqsignal.c:22
TimestampTz GetCurrentTimestamp(void)
Definition: timestamp.c:1583
Datum now(PG_FUNCTION_ARGS)
Definition: timestamp.c:1547
static XLogRecPtr last_snapshot_lsn
Definition: bgwriter.c:81
static TimestampTz last_snapshot_ts
Definition: bgwriter.c:80
int BgWriterDelay
Definition: bgwriter.c:61
#define HIBERNATE_FACTOR
Definition: bgwriter.c:67
#define LOG_SNAPSHOT_INTERVAL_MS
Definition: bgwriter.c:73
void AtEOXact_Buffers(bool isCommit)
Definition: bufmgr.c:3132
bool BgBufferSync(WritebackContext *wb_context)
Definition: bufmgr.c:2758
void UnlockBuffers(void)
Definition: bufmgr.c:4687
int bgwriter_flush_after
Definition: bufmgr.c:160
void WritebackContextInit(WritebackContext *context, int *max_pending)
Definition: bufmgr.c:5442
bool FirstCallSinceLastCheckpoint(void)
bool ConditionVariableCancelSleep(void)
int64 TimestampTz
Definition: timestamp.h:39
void AtEOXact_HashTables(bool isCommit)
Definition: dynahash.c:1878
void EmitErrorReport(void)
Definition: elog.c:1669
ErrorContextCallback * error_context_stack
Definition: elog.c:95
void FlushErrorState(void)
Definition: elog.c:1825
sigjmp_buf * PG_exception_stack
Definition: elog.c:97
void AtEOXact_Files(bool isCommit)
Definition: fd.c:3110
void StrategyNotifyBgWriter(int bgwprocno)
Definition: freelist.c:431
struct Latch * MyLatch
Definition: globals.c:58
void SignalHandlerForShutdownRequest(SIGNAL_ARGS)
Definition: interrupt.c:109
void SignalHandlerForConfigReload(SIGNAL_ARGS)
Definition: interrupt.c:61
void HandleMainLoopInterrupts(void)
Definition: interrupt.c:34
void ResetLatch(Latch *latch)
Definition: latch.c:697
int WaitLatch(Latch *latch, int wakeEvents, long timeout, uint32 wait_event_info)
Definition: latch.c:490
#define WL_TIMEOUT
Definition: latch.h:128
#define WL_EXIT_ON_PM_DEATH
Definition: latch.h:130
#define WL_LATCH_SET
Definition: latch.h:125
void LWLockReleaseAll(void)
Definition: lwlock.c:1903
MemoryContext TopMemoryContext
Definition: mcxt.c:141
#define AllocSetContextCreate
Definition: memutils.h:129
#define ALLOCSET_DEFAULT_SIZES
Definition: memutils.h:153
#define MemoryContextResetAndDeleteChildren(ctx)
Definition: memutils.h:70
#define RESUME_INTERRUPTS()
Definition: miscadmin.h:134
#define HOLD_INTERRUPTS()
Definition: miscadmin.h:132
static MemoryContext MemoryContextSwitchTo(MemoryContext context)
Definition: palloc.h:138
void pgstat_report_bgwriter(void)
pqsigfunc pqsignal(int signo, pqsigfunc func)
void procsignal_sigusr1_handler(SIGNAL_ARGS)
Definition: procsignal.c:639
void ReleaseAuxProcessResources(bool isCommit)
Definition: resowner.c:934
void pg_usleep(long microsec)
Definition: signal.c:53
void smgrcloseall(void)
Definition: smgr.c:327
void AtEOXact_SMgr(void)
Definition: smgr.c:739
PGPROC * MyProc
Definition: proc.c:66
XLogRecPtr LogStandbySnapshot(void)
Definition: standby.c:1287
int pgprocno
Definition: proc.h:191
#define TimestampTzPlusMilliseconds(tz, ms)
Definition: timestamp.h:85
static void pgstat_report_wait_end(void)
Definition: wait_event.h:104
#define SIGCHLD
Definition: win32_port.h:178
#define SIGHUP
Definition: win32_port.h:168
#define SIG_DFL
Definition: win32_port.h:163
#define SIGPIPE
Definition: win32_port.h:173
#define SIGUSR1
Definition: win32_port.h:180
#define SIGALRM
Definition: win32_port.h:174
#define SIGUSR2
Definition: win32_port.h:181
#define SIG_IGN
Definition: win32_port.h:165
bool RecoveryInProgress(void)
Definition: xlog.c:5948
XLogRecPtr GetLastImportantRecPtr(void)
Definition: xlog.c:6153
#define XLogStandbyInfoActive()
Definition: xlog.h:118

References ALLOCSET_DEFAULT_SIZES, AllocSetContextCreate, AtEOXact_Buffers(), AtEOXact_Files(), AtEOXact_HashTables(), AtEOXact_SMgr(), BgBufferSync(), bgwriter_flush_after, BgWriterDelay, ConditionVariableCancelSleep(), EmitErrorReport(), error_context_stack, FirstCallSinceLastCheckpoint(), FlushErrorState(), GetCurrentTimestamp(), GetLastImportantRecPtr(), HandleMainLoopInterrupts(), HIBERNATE_FACTOR, HOLD_INTERRUPTS, last_snapshot_lsn, last_snapshot_ts, LOG_SNAPSHOT_INTERVAL_MS, LogStandbySnapshot(), LWLockReleaseAll(), MemoryContextResetAndDeleteChildren, MemoryContextSwitchTo(), MyLatch, MyProc, now(), PG_exception_stack, pg_usleep(), PGPROC::pgprocno, pgstat_report_bgwriter(), pgstat_report_wait_end(), pqsignal(), procsignal_sigusr1_handler(), RecoveryInProgress(), ReleaseAuxProcessResources(), ResetLatch(), RESUME_INTERRUPTS, SIG_DFL, SIG_IGN, SIGALRM, SIGCHLD, SIGHUP, SignalHandlerForConfigReload(), SignalHandlerForShutdownRequest(), SIGPIPE, SIGUSR1, SIGUSR2, smgrcloseall(), StrategyNotifyBgWriter(), TimestampTzPlusMilliseconds, TopMemoryContext, UnBlockSig, UnlockBuffers(), WaitLatch(), WL_EXIT_ON_PM_DEATH, WL_LATCH_SET, WL_TIMEOUT, WritebackContextInit(), and XLogStandbyInfoActive.

Referenced by AuxiliaryProcessMain().

◆ CheckpointerMain()

void CheckpointerMain ( void  )

Definition at line 181 of file checkpointer.c.

182 {
183  sigjmp_buf local_sigjmp_buf;
184  MemoryContext checkpointer_context;
185 
187 
188  /*
189  * Properly accept or ignore signals the postmaster might send us
190  *
191  * Note: we deliberately ignore SIGTERM, because during a standard Unix
192  * system shutdown cycle, init will SIGTERM all processes at once. We
193  * want to wait for the backends to exit, whereupon the postmaster will
194  * tell us it's okay to shut down (via SIGUSR2).
195  */
197  pqsignal(SIGINT, ReqCheckpointHandler); /* request checkpoint */
198  pqsignal(SIGTERM, SIG_IGN); /* ignore SIGTERM */
199  /* SIGQUIT handler was already set up by InitPostmasterChild */
204 
205  /*
206  * Reset some signals that are accepted by postmaster but not here
207  */
209 
210  /*
211  * Initialize so that first time-driven event happens at the correct time.
212  */
214 
215  /*
216  * Write out stats after shutdown. This needs to be called by exactly one
217  * process during a normal shutdown, and since checkpointer is shut down
218  * very late...
219  *
220  * Walsenders are shut down after the checkpointer, but currently don't
221  * report stats. If that changes, we need a more complicated solution.
222  */
224 
225  /*
226  * Create a memory context that we will do all our work in. We do this so
227  * that we can reset the context during error recovery and thereby avoid
228  * possible memory leaks. Formerly this code just ran in
229  * TopMemoryContext, but resetting that would be a really bad idea.
230  */
231  checkpointer_context = AllocSetContextCreate(TopMemoryContext,
232  "Checkpointer",
234  MemoryContextSwitchTo(checkpointer_context);
235 
236  /*
237  * If an exception is encountered, processing resumes here.
238  *
239  * You might wonder why this isn't coded as an infinite loop around a
240  * PG_TRY construct. The reason is that this is the bottom of the
241  * exception stack, and so with PG_TRY there would be no exception handler
242  * in force at all during the CATCH part. By leaving the outermost setjmp
243  * always active, we have at least some chance of recovering from an error
244  * during error recovery. (If we get into an infinite loop thereby, it
245  * will soon be stopped by overflow of elog.c's internal state stack.)
246  *
247  * Note that we use sigsetjmp(..., 1), so that the prevailing signal mask
248  * (to wit, BlockSig) will be restored when longjmp'ing to here. Thus,
249  * signals other than SIGQUIT will be blocked until we complete error
250  * recovery. It might seem that this policy makes the HOLD_INTERRUPTS()
251  * call redundant, but it is not since InterruptPending might be set
252  * already.
253  */
254  if (sigsetjmp(local_sigjmp_buf, 1) != 0)
255  {
256  /* Since not using PG_TRY, must reset error stack by hand */
257  error_context_stack = NULL;
258 
259  /* Prevent interrupts while cleaning up */
260  HOLD_INTERRUPTS();
261 
262  /* Report the error to the server log */
263  EmitErrorReport();
264 
265  /*
266  * These operations are really just a minimal subset of
267  * AbortTransaction(). We don't have very many resources to worry
268  * about in checkpointer, but we do have LWLocks, buffers, and temp
269  * files.
270  */
274  UnlockBuffers();
276  AtEOXact_Buffers(false);
277  AtEOXact_SMgr();
278  AtEOXact_Files(false);
279  AtEOXact_HashTables(false);
280 
281  /* Warn any waiting backends that the checkpoint failed. */
282  if (ckpt_active)
283  {
288 
290 
291  ckpt_active = false;
292  }
293 
294  /*
295  * Now return to normal top-level context and clear ErrorContext for
296  * next time.
297  */
298  MemoryContextSwitchTo(checkpointer_context);
299  FlushErrorState();
300 
301  /* Flush any leaked data in the top-level context */
302  MemoryContextResetAndDeleteChildren(checkpointer_context);
303 
304  /* Now we can allow interrupts again */
306 
307  /*
308  * Sleep at least 1 second after any error. A write error is likely
309  * to be repeated, and we don't want to be filling the error logs as
310  * fast as we can.
311  */
312  pg_usleep(1000000L);
313 
314  /*
315  * Close all open files after any error. This is helpful on Windows,
316  * where holding deleted files open causes various strange errors.
317  * It's not clear we need it elsewhere, but shouldn't hurt.
318  */
319  smgrcloseall();
320  }
321 
322  /* We can now handle ereport(ERROR) */
323  PG_exception_stack = &local_sigjmp_buf;
324 
325  /*
326  * Unblock signals (they were blocked when the postmaster forked us)
327  */
328  sigprocmask(SIG_SETMASK, &UnBlockSig, NULL);
329 
330  /*
331  * Ensure all shared memory values are set correctly for the config. Doing
332  * this here ensures no race conditions from other concurrent updaters.
333  */
335 
336  /*
337  * Advertise our latch that backends can use to wake us up while we're
338  * sleeping.
339  */
341 
342  /*
343  * Loop forever
344  */
345  for (;;)
346  {
347  bool do_checkpoint = false;
348  int flags = 0;
349  pg_time_t now;
350  int elapsed_secs;
351  int cur_timeout;
352 
353  /* Clear any already-pending wakeups */
355 
356  /*
357  * Process any requests or signals received recently.
358  */
361 
362  /*
363  * Detect a pending checkpoint request by checking whether the flags
364  * word in shared memory is nonzero. We shouldn't need to acquire the
365  * ckpt_lck for this.
366  */
367  if (((volatile CheckpointerShmemStruct *) CheckpointerShmem)->ckpt_flags)
368  {
369  do_checkpoint = true;
371  }
372 
373  /*
374  * Force a checkpoint if too much time has elapsed since the last one.
375  * Note that we count a timed checkpoint in stats only when this
376  * occurs without an external request, but we set the CAUSE_TIME flag
377  * bit even if there is also an external request.
378  */
379  now = (pg_time_t) time(NULL);
380  elapsed_secs = now - last_checkpoint_time;
381  if (elapsed_secs >= CheckPointTimeout)
382  {
383  if (!do_checkpoint)
385  do_checkpoint = true;
386  flags |= CHECKPOINT_CAUSE_TIME;
387  }
388 
389  /*
390  * Do a checkpoint if requested.
391  */
392  if (do_checkpoint)
393  {
394  bool ckpt_performed = false;
395  bool do_restartpoint;
396 
397  /* Check if we should perform a checkpoint or a restartpoint. */
398  do_restartpoint = RecoveryInProgress();
399 
400  /*
401  * Atomically fetch the request flags to figure out what kind of a
402  * checkpoint we should perform, and increase the started-counter
403  * to acknowledge that we've started a new checkpoint.
404  */
406  flags |= CheckpointerShmem->ckpt_flags;
410 
412 
413  /*
414  * The end-of-recovery checkpoint is a real checkpoint that's
415  * performed while we're still in recovery.
416  */
417  if (flags & CHECKPOINT_END_OF_RECOVERY)
418  do_restartpoint = false;
419 
420  /*
421  * We will warn if (a) too soon since last checkpoint (whatever
422  * caused it) and (b) somebody set the CHECKPOINT_CAUSE_XLOG flag
423  * since the last checkpoint start. Note in particular that this
424  * implementation will not generate warnings caused by
425  * CheckPointTimeout < CheckPointWarning.
426  */
427  if (!do_restartpoint &&
428  (flags & CHECKPOINT_CAUSE_XLOG) &&
429  elapsed_secs < CheckPointWarning)
430  ereport(LOG,
431  (errmsg_plural("checkpoints are occurring too frequently (%d second apart)",
432  "checkpoints are occurring too frequently (%d seconds apart)",
433  elapsed_secs,
434  elapsed_secs),
435  errhint("Consider increasing the configuration parameter \"max_wal_size\".")));
436 
437  /*
438  * Initialize checkpointer-private variables used during
439  * checkpoint.
440  */
441  ckpt_active = true;
442  if (do_restartpoint)
444  else
448 
449  /*
450  * Do the checkpoint.
451  */
452  if (!do_restartpoint)
453  {
454  CreateCheckPoint(flags);
455  ckpt_performed = true;
456  }
457  else
458  ckpt_performed = CreateRestartPoint(flags);
459 
460  /*
461  * After any checkpoint, close all smgr files. This is so we
462  * won't hang onto smgr references to deleted files indefinitely.
463  */
464  smgrcloseall();
465 
466  /*
467  * Indicate checkpoint completion to any waiting backends.
468  */
472 
474 
475  if (ckpt_performed)
476  {
477  /*
478  * Note we record the checkpoint start time not end time as
479  * last_checkpoint_time. This is so that time-driven
480  * checkpoints happen at a predictable spacing.
481  */
483  }
484  else
485  {
486  /*
487  * We were not able to perform the restartpoint (checkpoints
488  * throw an ERROR in case of error). Most likely because we
489  * have not received any new checkpoint WAL records since the
490  * last restartpoint. Try again in 15 s.
491  */
493  }
494 
495  ckpt_active = false;
496 
497  /* We may have received an interrupt during the checkpoint. */
499  }
500 
501  /* Check for archive_timeout and switch xlog files if necessary. */
503 
504  /* Report pending statistics to the cumulative stats system */
506  pgstat_report_wal(true);
507 
508  /*
509  * If any checkpoint flags have been set, redo the loop to handle the
510  * checkpoint without sleeping.
511  */
512  if (((volatile CheckpointerShmemStruct *) CheckpointerShmem)->ckpt_flags)
513  continue;
514 
515  /*
516  * Sleep until we are signaled or it's time for another checkpoint or
517  * xlog file switch.
518  */
519  now = (pg_time_t) time(NULL);
520  elapsed_secs = now - last_checkpoint_time;
521  if (elapsed_secs >= CheckPointTimeout)
522  continue; /* no sleep for us ... */
523  cur_timeout = CheckPointTimeout - elapsed_secs;
525  {
526  elapsed_secs = now - last_xlog_switch_time;
527  if (elapsed_secs >= XLogArchiveTimeout)
528  continue; /* no sleep for us ... */
529  cur_timeout = Min(cur_timeout, XLogArchiveTimeout - elapsed_secs);
530  }
531 
532  (void) WaitLatch(MyLatch,
534  cur_timeout * 1000L /* convert to ms */ ,
535  WAIT_EVENT_CHECKPOINTER_MAIN);
536  }
537 }
#define Min(x, y)
Definition: c.h:993
static void UpdateSharedMemoryConfig(void)
static XLogRecPtr ckpt_start_recptr
Definition: checkpointer.c:155
static void ReqCheckpointHandler(SIGNAL_ARGS)
Definition: checkpointer.c:844
static void CheckArchiveTimeout(void)
Definition: checkpointer.c:608
static double ckpt_cached_elapsed
Definition: checkpointer.c:156
static bool ckpt_active
Definition: checkpointer.c:151
static void HandleCheckpointerInterrupts(void)
Definition: checkpointer.c:543
void AbsorbSyncRequests(void)
static pg_time_t last_xlog_switch_time
Definition: checkpointer.c:159
int CheckPointWarning
Definition: checkpointer.c:145
int CheckPointTimeout
Definition: checkpointer.c:144
static pg_time_t last_checkpoint_time
Definition: checkpointer.c:158
static pg_time_t ckpt_start_time
Definition: checkpointer.c:154
void ConditionVariableBroadcast(ConditionVariable *cv)
int errmsg_plural(const char *fmt_singular, const char *fmt_plural, unsigned long n,...)
Definition: elog.c:1179
int errhint(const char *fmt,...)
Definition: elog.c:1316
#define LOG
Definition: elog.h:31
#define ereport(elevel,...)
Definition: elog.h:149
int MyProcPid
Definition: globals.c:44
void before_shmem_exit(pg_on_exit_callback function, Datum arg)
Definition: ipc.c:333
void pgstat_before_server_shutdown(int code, Datum arg)
Definition: pgstat.c:465
void pgstat_report_checkpointer(void)
void pgstat_report_wal(bool force)
Definition: pgstat_wal.c:48
int64 pg_time_t
Definition: pgtime.h:23
#define SpinLockRelease(lock)
Definition: spin.h:64
#define SpinLockAcquire(lock)
Definition: spin.h:62
PROC_HDR * ProcGlobal
Definition: proc.c:78
ConditionVariable done_cv
Definition: checkpointer.c:126
ConditionVariable start_cv
Definition: checkpointer.c:125
Latch procLatch
Definition: proc.h:170
Latch * checkpointerLatch
Definition: proc.h:396
PgStat_Counter requested_checkpoints
Definition: pgstat.h:264
PgStat_Counter timed_checkpoints
Definition: pgstat.h:263
bool CreateRestartPoint(int flags)
Definition: xlog.c:7119
XLogRecPtr GetInsertRecPtr(void)
Definition: xlog.c:6096
int XLogArchiveTimeout
Definition: xlog.c:121
void CreateCheckPoint(int flags)
Definition: xlog.c:6476
#define CHECKPOINT_CAUSE_XLOG
Definition: xlog.h:143
#define CHECKPOINT_END_OF_RECOVERY
Definition: xlog.h:135
#define CHECKPOINT_CAUSE_TIME
Definition: xlog.h:144
XLogRecPtr GetXLogReplayRecPtr(TimeLineID *replayTLI)

References AbsorbSyncRequests(), ALLOCSET_DEFAULT_SIZES, AllocSetContextCreate, AtEOXact_Buffers(), AtEOXact_Files(), AtEOXact_HashTables(), AtEOXact_SMgr(), before_shmem_exit(), CheckArchiveTimeout(), CHECKPOINT_CAUSE_TIME, CHECKPOINT_CAUSE_XLOG, CHECKPOINT_END_OF_RECOVERY, CheckpointerShmemStruct::checkpointer_pid, PROC_HDR::checkpointerLatch, CheckpointerShmem, CheckPointTimeout, CheckPointWarning, ckpt_active, ckpt_cached_elapsed, CheckpointerShmemStruct::ckpt_done, CheckpointerShmemStruct::ckpt_failed, CheckpointerShmemStruct::ckpt_flags, CheckpointerShmemStruct::ckpt_lck, ckpt_start_recptr, ckpt_start_time, CheckpointerShmemStruct::ckpt_started, ConditionVariableBroadcast(), ConditionVariableCancelSleep(), CreateCheckPoint(), CreateRestartPoint(), CheckpointerShmemStruct::done_cv, EmitErrorReport(), ereport, errhint(), errmsg_plural(), error_context_stack, FlushErrorState(), GetInsertRecPtr(), GetXLogReplayRecPtr(), HandleCheckpointerInterrupts(), HOLD_INTERRUPTS, last_checkpoint_time, last_xlog_switch_time, LOG, LWLockReleaseAll(), MemoryContextResetAndDeleteChildren, MemoryContextSwitchTo(), Min, MyLatch, MyProc, MyProcPid, now(), PendingCheckpointerStats, PG_exception_stack, pg_usleep(), pgstat_before_server_shutdown(), pgstat_report_checkpointer(), pgstat_report_wait_end(), pgstat_report_wal(), pqsignal(), ProcGlobal, PGPROC::procLatch, procsignal_sigusr1_handler(), RecoveryInProgress(), ReleaseAuxProcessResources(), ReqCheckpointHandler(), PgStat_CheckpointerStats::requested_checkpoints, ResetLatch(), RESUME_INTERRUPTS, SIG_DFL, SIG_IGN, SIGALRM, SIGCHLD, SIGHUP, SignalHandlerForConfigReload(), SignalHandlerForShutdownRequest(), SIGPIPE, SIGUSR1, SIGUSR2, smgrcloseall(), SpinLockAcquire, SpinLockRelease, CheckpointerShmemStruct::start_cv, PgStat_CheckpointerStats::timed_checkpoints, TopMemoryContext, UnBlockSig, UnlockBuffers(), UpdateSharedMemoryConfig(), WaitLatch(), WL_EXIT_ON_PM_DEATH, WL_LATCH_SET, WL_TIMEOUT, and XLogArchiveTimeout.

Referenced by AuxiliaryProcessMain().

◆ CheckpointerShmemInit()

void CheckpointerShmemInit ( void  )

Definition at line 887 of file checkpointer.c.

888 {
889  Size size = CheckpointerShmemSize();
890  bool found;
891 
893  ShmemInitStruct("Checkpointer Data",
894  size,
895  &found);
896 
897  if (!found)
898  {
899  /*
900  * First time through, so initialize. Note that we zero the whole
901  * requests array; this is so that CompactCheckpointerRequestQueue can
902  * assume that any pad bytes in the request structs are zeroes.
903  */
904  MemSet(CheckpointerShmem, 0, size);
909  }
910 }
#define MemSet(start, val, len)
Definition: c.h:1009
size_t Size
Definition: c.h:594
Size CheckpointerShmemSize(void)
Definition: checkpointer.c:868
void ConditionVariableInit(ConditionVariable *cv)
int NBuffers
Definition: globals.c:136
void * ShmemInitStruct(const char *name, Size size, bool *foundPtr)
Definition: shmem.c:396
#define SpinLockInit(lock)
Definition: spin.h:60

References CheckpointerShmem, CheckpointerShmemSize(), CheckpointerShmemStruct::ckpt_lck, ConditionVariableInit(), CheckpointerShmemStruct::done_cv, CheckpointerShmemStruct::max_requests, MemSet, NBuffers, ShmemInitStruct(), SpinLockInit, and CheckpointerShmemStruct::start_cv.

Referenced by CreateSharedMemoryAndSemaphores().

◆ CheckpointerShmemSize()

Size CheckpointerShmemSize ( void  )

Definition at line 868 of file checkpointer.c.

869 {
870  Size size;
871 
872  /*
873  * Currently, the size of the requests[] array is arbitrarily set equal to
874  * NBuffers. This may prove too large or small ...
875  */
876  size = offsetof(CheckpointerShmemStruct, requests);
877  size = add_size(size, mul_size(NBuffers, sizeof(CheckpointerRequest)));
878 
879  return size;
880 }
Size add_size(Size s1, Size s2)
Definition: shmem.c:502
Size mul_size(Size s1, Size s2)
Definition: shmem.c:519

References add_size(), mul_size(), and NBuffers.

Referenced by CalculateShmemSize(), and CheckpointerShmemInit().

◆ CheckpointWriteDelay()

void CheckpointWriteDelay ( int  flags,
double  progress 
)

Definition at line 696 of file checkpointer.c.

697 {
698  static int absorb_counter = WRITES_PER_ABSORB;
699 
700  /* Do nothing if checkpoint is being executed by non-checkpointer process */
701  if (!AmCheckpointerProcess())
702  return;
703 
704  /*
705  * Perform the usual duties and take a nap, unless we're behind schedule,
706  * in which case we just try to catch up as quickly as possible.
707  */
708  if (!(flags & CHECKPOINT_IMMEDIATE) &&
712  {
714  {
715  ConfigReloadPending = false;
717  /* update shmem copies of config variables */
719  }
720 
722  absorb_counter = WRITES_PER_ABSORB;
723 
725 
726  /* Report interim statistics to the cumulative stats system */
728 
729  /*
730  * This sleep used to be connected to bgwriter_delay, typically 200ms.
731  * That resulted in more frequent wakeups if not much work to do.
732  * Checkpointer and bgwriter are no longer related so take the Big
733  * Sleep.
734  */
736  100,
737  WAIT_EVENT_CHECKPOINT_WRITE_DELAY);
739  }
740  else if (--absorb_counter <= 0)
741  {
742  /*
743  * Absorb pending fsync requests after each WRITES_PER_ABSORB write
744  * operations even when we don't sleep, to prevent overflow of the
745  * fsync request queue.
746  */
748  absorb_counter = WRITES_PER_ABSORB;
749  }
750 
751  /* Check for barrier events. */
754 }
static bool ImmediateCheckpointRequested(void)
Definition: checkpointer.c:669
static bool IsCheckpointOnSchedule(double progress)
Definition: checkpointer.c:765
#define WRITES_PER_ABSORB
Definition: checkpointer.c:139
volatile sig_atomic_t ProcSignalBarrierPending
Definition: globals.c:37
@ PGC_SIGHUP
Definition: guc.h:71
void ProcessConfigFile(GucContext context)
volatile sig_atomic_t ShutdownRequestPending
Definition: interrupt.c:28
volatile sig_atomic_t ConfigReloadPending
Definition: interrupt.c:27
int progress
Definition: pgbench.c:261
void ProcessProcSignalBarrier(void)
Definition: procsignal.c:468
#define CHECKPOINT_IMMEDIATE
Definition: xlog.h:136

References AbsorbSyncRequests(), AmCheckpointerProcess, CheckArchiveTimeout(), CHECKPOINT_IMMEDIATE, ConfigReloadPending, ImmediateCheckpointRequested(), IsCheckpointOnSchedule(), MyLatch, PGC_SIGHUP, pgstat_report_checkpointer(), ProcessConfigFile(), ProcessProcSignalBarrier(), ProcSignalBarrierPending, progress, ResetLatch(), ShutdownRequestPending, UpdateSharedMemoryConfig(), WaitLatch(), WL_EXIT_ON_PM_DEATH, WL_LATCH_SET, WL_TIMEOUT, and WRITES_PER_ABSORB.

Referenced by BufferSync().

◆ FirstCallSinceLastCheckpoint()

bool FirstCallSinceLastCheckpoint ( void  )

Definition at line 1337 of file checkpointer.c.

1338 {
1339  static int ckpt_done = 0;
1340  int new_done;
1341  bool FirstCall = false;
1342 
1344  new_done = CheckpointerShmem->ckpt_done;
1346 
1347  if (new_done != ckpt_done)
1348  FirstCall = true;
1349 
1350  ckpt_done = new_done;
1351 
1352  return FirstCall;
1353 }

References CheckpointerShmem, CheckpointerShmemStruct::ckpt_done, CheckpointerShmemStruct::ckpt_lck, SpinLockAcquire, and SpinLockRelease.

Referenced by BackgroundWriterMain().

◆ ForwardSyncRequest()

bool ForwardSyncRequest ( const FileTag ftag,
SyncRequestType  type 
)

Definition at line 1085 of file checkpointer.c.

1086 {
1087  CheckpointerRequest *request;
1088  bool too_full;
1089 
1090  if (!IsUnderPostmaster)
1091  return false; /* probably shouldn't even get here */
1092 
1093  if (AmCheckpointerProcess())
1094  elog(ERROR, "ForwardSyncRequest must not be called in checkpointer");
1095 
1096  LWLockAcquire(CheckpointerCommLock, LW_EXCLUSIVE);
1097 
1098  /* Count all backend writes regardless of if they fit in the queue */
1101 
1102  /*
1103  * If the checkpointer isn't running or the request queue is full, the
1104  * backend will have to perform its own fsync request. But before forcing
1105  * that to happen, we can try to compact the request queue.
1106  */
1107  if (CheckpointerShmem->checkpointer_pid == 0 ||
1110  {
1111  /*
1112  * Count the subset of writes where backends have to do their own
1113  * fsync
1114  */
1117  LWLockRelease(CheckpointerCommLock);
1118  return false;
1119  }
1120 
1121  /* OK, insert request */
1123  request->ftag = *ftag;
1124  request->type = type;
1125 
1126  /* If queue is more than half full, nudge the checkpointer to empty it */
1127  too_full = (CheckpointerShmem->num_requests >=
1129 
1130  LWLockRelease(CheckpointerCommLock);
1131 
1132  /* ... but not till after we release the lock */
1133  if (too_full && ProcGlobal->checkpointerLatch)
1135 
1136  return true;
1137 }
static bool CompactCheckpointerRequestQueue(void)
#define ERROR
Definition: elog.h:39
bool IsUnderPostmaster
Definition: globals.c:113
void SetLatch(Latch *latch)
Definition: latch.c:605
#define AmBackgroundWriterProcess()
Definition: miscadmin.h:453
const char * type

References AmBackgroundWriterProcess, AmCheckpointerProcess, CheckpointerShmemStruct::checkpointer_pid, PROC_HDR::checkpointerLatch, CheckpointerShmem, CompactCheckpointerRequestQueue(), elog(), ERROR, CheckpointerRequest::ftag, IsUnderPostmaster, LW_EXCLUSIVE, LWLockAcquire(), LWLockRelease(), CheckpointerShmemStruct::max_requests, CheckpointerShmemStruct::num_backend_fsync, CheckpointerShmemStruct::num_backend_writes, CheckpointerShmemStruct::num_requests, ProcGlobal, CheckpointerShmemStruct::requests, SetLatch(), CheckpointerRequest::type, and type.

Referenced by RegisterSyncRequest().

◆ RequestCheckpoint()

void RequestCheckpoint ( int  flags)

Definition at line 930 of file checkpointer.c.

931 {
932  int ntries;
933  int old_failed,
934  old_started;
935 
936  /*
937  * If in a standalone backend, just do it ourselves.
938  */
940  {
941  /*
942  * There's no point in doing slow checkpoints in a standalone backend,
943  * because there's no other backends the checkpoint could disrupt.
944  */
946 
947  /*
948  * After any checkpoint, close all smgr files. This is so we won't
949  * hang onto smgr references to deleted files indefinitely.
950  */
951  smgrcloseall();
952 
953  return;
954  }
955 
956  /*
957  * Atomically set the request flags, and take a snapshot of the counters.
958  * When we see ckpt_started > old_started, we know the flags we set here
959  * have been seen by checkpointer.
960  *
961  * Note that we OR the flags with any existing flags, to avoid overriding
962  * a "stronger" request by another backend. The flag senses must be
963  * chosen to make this work!
964  */
966 
967  old_failed = CheckpointerShmem->ckpt_failed;
968  old_started = CheckpointerShmem->ckpt_started;
970 
972 
973  /*
974  * Send signal to request checkpoint. It's possible that the checkpointer
975  * hasn't started yet, or is in process of restarting, so we will retry a
976  * few times if needed. (Actually, more than a few times, since on slow
977  * or overloaded buildfarm machines, it's been observed that the
978  * checkpointer can take several seconds to start.) However, if not told
979  * to wait for the checkpoint to occur, we consider failure to send the
980  * signal to be nonfatal and merely LOG it. The checkpointer should see
981  * the request when it does start, with or without getting a signal.
982  */
983 #define MAX_SIGNAL_TRIES 600 /* max wait 60.0 sec */
984  for (ntries = 0;; ntries++)
985  {
987  {
988  if (ntries >= MAX_SIGNAL_TRIES || !(flags & CHECKPOINT_WAIT))
989  {
990  elog((flags & CHECKPOINT_WAIT) ? ERROR : LOG,
991  "could not signal for checkpoint: checkpointer is not running");
992  break;
993  }
994  }
995  else if (kill(CheckpointerShmem->checkpointer_pid, SIGINT) != 0)
996  {
997  if (ntries >= MAX_SIGNAL_TRIES || !(flags & CHECKPOINT_WAIT))
998  {
999  elog((flags & CHECKPOINT_WAIT) ? ERROR : LOG,
1000  "could not signal for checkpoint: %m");
1001  break;
1002  }
1003  }
1004  else
1005  break; /* signal sent successfully */
1006 
1008  pg_usleep(100000L); /* wait 0.1 sec, then retry */
1009  }
1010 
1011  /*
1012  * If requested, wait for completion. We detect completion according to
1013  * the algorithm given above.
1014  */
1015  if (flags & CHECKPOINT_WAIT)
1016  {
1017  int new_started,
1018  new_failed;
1019 
1020  /* Wait for a new checkpoint to start. */
1022  for (;;)
1023  {
1025  new_started = CheckpointerShmem->ckpt_started;
1027 
1028  if (new_started != old_started)
1029  break;
1030 
1032  WAIT_EVENT_CHECKPOINT_START);
1033  }
1035 
1036  /*
1037  * We are waiting for ckpt_done >= new_started, in a modulo sense.
1038  */
1040  for (;;)
1041  {
1042  int new_done;
1043 
1045  new_done = CheckpointerShmem->ckpt_done;
1046  new_failed = CheckpointerShmem->ckpt_failed;
1048 
1049  if (new_done - new_started >= 0)
1050  break;
1051 
1053  WAIT_EVENT_CHECKPOINT_DONE);
1054  }
1056 
1057  if (new_failed != old_failed)
1058  ereport(ERROR,
1059  (errmsg("checkpoint request failed"),
1060  errhint("Consult recent messages in the server log for details.")));
1061  }
1062 }
#define MAX_SIGNAL_TRIES
void ConditionVariablePrepareToSleep(ConditionVariable *cv)
void ConditionVariableSleep(ConditionVariable *cv, uint32 wait_event_info)
int errmsg(const char *fmt,...)
Definition: elog.c:1069
bool IsPostmasterEnvironment
Definition: globals.c:112
#define CHECK_FOR_INTERRUPTS()
Definition: miscadmin.h:121
#define kill(pid, sig)
Definition: win32_port.h:485
#define CHECKPOINT_REQUESTED
Definition: xlog.h:141
#define CHECKPOINT_WAIT
Definition: xlog.h:140

References CHECK_FOR_INTERRUPTS, CHECKPOINT_IMMEDIATE, CHECKPOINT_REQUESTED, CHECKPOINT_WAIT, CheckpointerShmemStruct::checkpointer_pid, CheckpointerShmem, CheckpointerShmemStruct::ckpt_done, CheckpointerShmemStruct::ckpt_failed, CheckpointerShmemStruct::ckpt_flags, CheckpointerShmemStruct::ckpt_lck, CheckpointerShmemStruct::ckpt_started, ConditionVariableCancelSleep(), ConditionVariablePrepareToSleep(), ConditionVariableSleep(), CreateCheckPoint(), CheckpointerShmemStruct::done_cv, elog(), ereport, errhint(), errmsg(), ERROR, IsPostmasterEnvironment, kill, LOG, MAX_SIGNAL_TRIES, pg_usleep(), smgrcloseall(), SpinLockAcquire, SpinLockRelease, and CheckpointerShmemStruct::start_cv.

Referenced by CreateDatabaseUsingFileCopy(), do_pg_backup_start(), dropdb(), DropTableSpace(), movedb(), PerformRecoveryXLogAction(), standard_ProcessUtility(), StartupXLOG(), XLogPageRead(), and XLogWrite().

Variable Documentation

◆ BgWriterDelay

PGDLLIMPORT int BgWriterDelay
extern

Definition at line 61 of file bgwriter.c.

Referenced by BackgroundWriterMain(), and BgBufferSync().

◆ CheckPointCompletionTarget

PGDLLIMPORT double CheckPointCompletionTarget
extern

◆ CheckPointTimeout

PGDLLIMPORT int CheckPointTimeout
extern

Definition at line 144 of file checkpointer.c.

Referenced by CheckpointerMain(), and IsCheckpointOnSchedule().

◆ CheckPointWarning

PGDLLIMPORT int CheckPointWarning
extern

Definition at line 145 of file checkpointer.c.

Referenced by CheckpointerMain().