Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.217.14
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
include /
pgsql /
server /
postmaster /
Delete
Unzip
Name
Size
Permission
Date
Action
autovacuum.h
1.92
KB
-rw-r--r--
2023-12-20 12:58
bgwriter.h
1.21
KB
-rw-r--r--
2023-12-20 12:58
fork_process.h
447
B
-rw-r--r--
2023-12-20 12:58
pgarch.h
641
B
-rw-r--r--
2023-12-20 12:58
postmaster.h
1.73
KB
-rw-r--r--
2023-12-20 12:58
startup.h
635
B
-rw-r--r--
2023-12-20 12:58
syslogger.h
2.51
KB
-rw-r--r--
2023-12-20 12:58
walwriter.h
487
B
-rw-r--r--
2023-12-20 12:58
Save
Rename
/*------------------------------------------------------------------------- * * 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-2012, 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); extern void CheckpointerMain(void); 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 */