Fix obsolete comment regarding FSM truncation.
[PostgreSQL.git] / src / include / storage / backendid.h
blob35546172e76c6b51cbeed4b138e5b49960478ac9
1 /*-------------------------------------------------------------------------
3 * backendid.h
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
10 * $PostgreSQL$
12 *-------------------------------------------------------------------------
14 #ifndef BACKENDID_H
15 #define BACKENDID_H
17 /* ----------------
18 * -cim 8/17/90
19 * ----------------
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 */