/
githubmirror
/
postgres
Обзор
Документация
Войти
/
githubmirror
/
postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/include/postmaster/datachecksum_state.h
28 строк
923 B
Heikki Linnakangas
Misc cleanup in datachecksums_state.[ch]
24 июн 2026, 15:07
24 июн 2026, 15:07
0edbf72
Код
Авторство
О чём код?
/*------------------------------------------------------------------------- * * datachecksum_state.h * header file for data checksum helper background worker and data * checksum state manipulation * * * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/include/postmaster/datachecksum_state.h * *------------------------------------------------------------------------- */ #ifndef DATACHECKSUM_STATE_H #define DATACHECKSUM_STATE_H #include "storage/procsignal.h" /* Prototypes for data checksum state manipulation */ bool AbsorbDataChecksumsBarrier(ProcSignalBarrierType barrier); void EmitAndWaitDataChecksumsBarrier(uint32 state); /* Background worker entrypoints */ void DataChecksumsWorkerLauncherMain(Datum arg); void DataChecksumsWorkerMain(Datum arg); #endif /* DATACHECKSUM_STATE_H */