Fix a few errors in comments. Patch by Fujii Masao, plus the one in
[PostgreSQL.git] / src / include / storage / ipc.h
blobea93b7abd1ab8ce07cbec226fd93c976bace85b6
1 /*-------------------------------------------------------------------------
3 * ipc.h
4 * POSTGRES inter-process communication definitions.
6 * This file is misnamed, as it no longer has much of anything directly
7 * to do with IPC. The functionality here is concerned with managing
8 * exit-time cleanup for either a postmaster or a backend.
11 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
12 * Portions Copyright (c) 1994, Regents of the University of California
14 * $PostgreSQL$
16 *-------------------------------------------------------------------------
18 #ifndef IPC_H
19 #define IPC_H
21 typedef void (*pg_on_exit_callback) (int code, Datum arg);
22 typedef void (*shmem_startup_hook_type) (void);
24 /*----------
25 * API for handling cleanup that must occur during either ereport(ERROR)
26 * or ereport(FATAL) exits from a block of code. (Typical examples are
27 * undoing transient changes to shared-memory state.)
29 * PG_ENSURE_ERROR_CLEANUP(cleanup_function, arg);
30 * {
31 * ... code that might throw ereport(ERROR) or ereport(FATAL) ...
32 * }
33 * PG_END_ENSURE_ERROR_CLEANUP(cleanup_function, arg);
35 * where the cleanup code is in a function declared per pg_on_exit_callback.
36 * The Datum value "arg" can carry any information the cleanup function
37 * needs.
39 * This construct ensures that cleanup_function() will be called during
40 * either ERROR or FATAL exits. It will not be called on successful
41 * exit from the controlled code. (If you want it to happen then too,
42 * call the function yourself from just after the construct.)
44 * Note: the macro arguments are multiply evaluated, so avoid side-effects.
45 *----------
47 #define PG_ENSURE_ERROR_CLEANUP(cleanup_function, arg) \
48 do { \
49 on_shmem_exit(cleanup_function, arg); \
50 PG_TRY()
52 #define PG_END_ENSURE_ERROR_CLEANUP(cleanup_function, arg) \
53 cancel_shmem_exit(cleanup_function, arg); \
54 PG_CATCH(); \
55 { \
56 cancel_shmem_exit(cleanup_function, arg); \
57 cleanup_function (0, arg); \
58 PG_RE_THROW(); \
59 } \
60 PG_END_TRY(); \
61 } while (0)
64 /* ipc.c */
65 extern bool proc_exit_inprogress;
67 extern void proc_exit(int code);
68 extern void shmem_exit(int code);
69 extern void on_proc_exit(pg_on_exit_callback function, Datum arg);
70 extern void on_shmem_exit(pg_on_exit_callback function, Datum arg);
71 extern void cancel_shmem_exit(pg_on_exit_callback function, Datum arg);
72 extern void on_exit_reset(void);
74 /* ipci.c */
75 extern PGDLLIMPORT shmem_startup_hook_type shmem_startup_hook;
77 extern void CreateSharedMemoryAndSemaphores(bool makePrivate, int port);
79 #endif /* IPC_H */