mirror of
https://github.com/postgres/postgres.git
synced 2026-03-21 18:10:25 -04:00
Until now __attribute__() was defined to be empty for all compilers but gcc. That's problematic because it prevents using it in other compilers; which is necessary e.g. for atomics portability. It's also just generally dubious to do so in a header as widely included as c.h. Instead add pg_attribute_format_arg, pg_attribute_printf, pg_attribute_noreturn macros which are implemented in the compilers that understand them. Also add pg_attribute_noreturn and pg_attribute_packed, but don't provide fallbacks, since they can affect functionality. This means that external code that, possibly unwittingly, relied on __attribute__ defined to be empty on !gcc compilers may now run into warnings or errors on those compilers. But there shouldn't be many occurances of that and it's hard to work around... Discussion: 54B58BA3.8040302@ohmu.fi Author: Oskari Saarenmaa, with some minor changes by me.
43 lines
1.3 KiB
C
43 lines
1.3 KiB
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* bgwriter.h
|
|
* Exports from postmaster/bgwriter.c and postmaster/checkpointer.c.
|
|
*
|
|
* The bgwriter process used to handle checkpointing duties too. Now
|
|
* there is a separate process, but we did not bother to split this header.
|
|
*
|
|
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
|
|
*
|
|
* src/include/postmaster/bgwriter.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef _BGWRITER_H
|
|
#define _BGWRITER_H
|
|
|
|
#include "storage/block.h"
|
|
#include "storage/relfilenode.h"
|
|
|
|
|
|
/* GUC options */
|
|
extern int BgWriterDelay;
|
|
extern int CheckPointTimeout;
|
|
extern int CheckPointWarning;
|
|
extern double CheckPointCompletionTarget;
|
|
|
|
extern void BackgroundWriterMain(void) pg_attribute_noreturn;
|
|
extern void CheckpointerMain(void) pg_attribute_noreturn;
|
|
|
|
extern void RequestCheckpoint(int flags);
|
|
extern void CheckpointWriteDelay(int flags, double progress);
|
|
|
|
extern bool ForwardFsyncRequest(RelFileNode rnode, ForkNumber forknum,
|
|
BlockNumber segno);
|
|
extern void AbsorbFsyncRequests(void);
|
|
|
|
extern Size CheckpointerShmemSize(void);
|
|
extern void CheckpointerShmemInit(void);
|
|
|
|
extern bool FirstCallSinceLastCheckpoint(void);
|
|
|
|
#endif /* _BGWRITER_H */
|