1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-25 13:17:41 +03:00
Files
postgres/src/include/storage/dsm_registry.h
Bruce Momjian 50e6eb731d Update copyright for 2025
Backpatch-through: 13
2025-01-01 11:21:55 -05:00

24 lines
732 B
C

/*-------------------------------------------------------------------------
*
* dsm_registry.h
* Functions for interfacing with the dynamic shared memory registry.
*
* Portions Copyright (c) 1996-2025, 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
extern void *GetNamedDSMSegment(const char *name, size_t size,
void (*init_callback) (void *ptr),
bool *found);
extern Size DSMRegistryShmemSize(void);
extern void DSMRegistryShmemInit(void);
#endif /* DSM_REGISTRY_H */