/
githubmirror
/
postgres
Обзор
Документация
Войти
/
githubmirror
/
postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/include/storage/subsystems.h
30 строк
859 B
Heikki Linnakangas
Introduce a registry of built-in shmem subsystems
06 апр 2026, 02:12
06 апр 2026, 02:12
1fc2e9f
Код
Авторство
О чём код?
/*------------------------------------------------------------------------- * * subsystems.h * Provide extern declarations for all the built-in subsystem callbacks * * * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/include/storage/subsystems.h * *------------------------------------------------------------------------- */ #ifndef SUBSYSTEMS_H #define SUBSYSTEMS_H #include "storage/shmem.h" /* * Extern declarations of all the built-in subsystem callbacks * * The actual list is in subsystemlist.h, so that the same list can be used * for other purposes. */ #define PG_SHMEM_SUBSYSTEM(callbacks) \ extern const ShmemCallbacks callbacks; #include "storage/subsystemlist.h" #undef PG_SHMEM_SUBSYSTEM #endif /* SUBSYSTEMS_H */