?? ipc.h
字號:
/*------------------------------------------------------------------------- * * ipc.h * POSTGRES inter-process communication definitions. * * This file is misnamed, as it no longer has much of anything directly * to do with IPC. The functionality here is concerned with managing * exit-time cleanup for either a postmaster or a backend. * * * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * $PostgreSQL: pgsql/src/include/storage/ipc.h,v 1.71 2005/06/17 22:32:49 tgl Exp $ * *------------------------------------------------------------------------- */#ifndef IPC_H#define IPC_H/* ipc.c */extern bool proc_exit_inprogress;extern void proc_exit(int code);extern void shmem_exit(int code);extern void on_proc_exit(void (*function) (int code, Datum arg), Datum arg);extern void on_shmem_exit(void (*function) (int code, Datum arg), Datum arg);extern void on_exit_reset(void);/* ipci.c */extern void CreateSharedMemoryAndSemaphores(bool makePrivate, int port);#endif /* IPC_H */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -