blob: b381e44bc9d87bbaaa3a8be12f69f3464d1cece3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*-------------------------------------------------------------------------
*
* 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 */
|