Files
openGauss-server/src/include/storage/backendid.h
2021-09-23 15:19:37 +08:00

26 lines
651 B
C

/* -------------------------------------------------------------------------
*
* backendid.h
* openGauss backend id communication definitions
*
*
* Portions Copyright (c) 1996-2012, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* src/include/storage/backendid.h
*
* -------------------------------------------------------------------------
*/
#ifndef BACKENDID_H
#define BACKENDID_H
/* ----------------
* -cim 8/17/90
* ----------------
*/
typedef int BackendId; /* unique currently active backend identifier */
#define InvalidBackendId (-1)
#endif /* BACKENDID_H */