/
githubmirror
/
postgres
Обзор
Документация
Войти
/
githubmirror
/
postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/include/storage/dsm_registry.h
26 строк
878 B
Heikki Linnakangas
Use the new shmem allocation functions in a few core subsystems
06 апр 2026, 02:12
06 апр 2026, 02:12
c6d5571
Код
Авторство
О чём код?
/*------------------------------------------------------------------------- * * dsm_registry.h * Functions for interfacing with the dynamic shared memory registry. * * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/include/storage/dsm_registry.h * *------------------------------------------------------------------------- */ #ifndef DSM_REGISTRY_H #define DSM_REGISTRY_H #include "lib/dshash.h" extern void *GetNamedDSMSegment(const char *name, size_t size, void (*init_callback) (void *ptr, void *arg), bool *found, void *arg); extern dsa_area *GetNamedDSA(const char *name, bool *found); extern dshash_table *GetNamedDSHash(const char *name, const dshash_parameters *params, bool *found); #endif /* DSM_REGISTRY_H */