PostgreSQL Source Code git master
sinvaladt.h
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * sinvaladt.h
4 * POSTGRES shared cache invalidation data manager.
5 *
6 * The shared cache invalidation manager is responsible for transmitting
7 * invalidation messages between backends. Any message sent by any backend
8 * must be delivered to all already-running backends before it can be
9 * forgotten. (If we run out of space, we instead deliver a "RESET"
10 * message to backends that have fallen too far behind.)
11 *
12 * The struct type SharedInvalidationMessage, defining the contents of
13 * a single message, is defined in sinval.h.
14 *
15 * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
16 * Portions Copyright (c) 1994, Regents of the University of California
17 *
18 * src/include/storage/sinvaladt.h
19 *
20 *-------------------------------------------------------------------------
21 */
22#ifndef SINVALADT_H
23#define SINVALADT_H
24
25#include "storage/lock.h"
26#include "storage/sinval.h"
27
28/*
29 * prototypes for functions in sinvaladt.c
30 */
31extern Size SharedInvalShmemSize(void);
32extern void SharedInvalShmemInit(void);
33extern void SharedInvalBackendInit(bool sendOnly);
34
35extern void SIInsertDataEntries(const SharedInvalidationMessage *data, int n);
36extern int SIGetDataEntries(SharedInvalidationMessage *data, int datasize);
37extern void SICleanupQueue(bool callerHasWriteLock, int minFree);
38
40
41#endif /* SINVALADT_H */
uint32 LocalTransactionId
Definition: c.h:611
size_t Size
Definition: c.h:562
const void * data
void SICleanupQueue(bool callerHasWriteLock, int minFree)
Definition: sinvaladt.c:576
Size SharedInvalShmemSize(void)
Definition: sinvaladt.c:217
void SharedInvalBackendInit(bool sendOnly)
Definition: sinvaladt.c:271
int SIGetDataEntries(SharedInvalidationMessage *data, int datasize)
Definition: sinvaladt.c:472
void SharedInvalShmemInit(void)
Definition: sinvaladt.c:233
void SIInsertDataEntries(const SharedInvalidationMessage *data, int n)
Definition: sinvaladt.c:369
LocalTransactionId GetNextLocalTransactionId(void)
Definition: sinvaladt.c:700