1 /*-------------------------------------------------------------------------
4 * POSTGRES backend id communication definitions
7 * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
12 *-------------------------------------------------------------------------
21 typedef int BackendId
; /* unique currently active backend identifier */
23 #define InvalidBackendId (-1)
25 extern BackendId MyBackendId
; /* backend id of this backend */
27 #endif /* BACKENDID_H */