⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ipc.h

📁 PostgreSQL 8.2中增加了很多企业用户所需要的功能和性能上的提高,其开发团队说,该版本将加速更多企业向该数据库移植.核心开发成员之一Bruce Momjian表示,在新版PostgreSQL
💻 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-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * $PostgreSQL: pgsql/src/include/storage/ipc.h,v 1.72 2006/03/05 15:58:59 momjian 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 + -