diff options
Diffstat (limited to 'src/include/storage/backendid.h')
-rw-r--r-- | src/include/storage/backendid.h | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/src/include/storage/backendid.h b/src/include/storage/backendid.h index c631d9c38ce..5abdd770e8c 100644 --- a/src/include/storage/backendid.h +++ b/src/include/storage/backendid.h @@ -1,31 +1,32 @@ /*------------------------------------------------------------------------- * * backendid.h-- - * POSTGRES backend id communication definitions + * POSTGRES backend id communication definitions * * * Copyright (c) 1994, Regents of the University of California * - * $Id: backendid.h,v 1.2 1996/11/05 06:10:52 scrappy Exp $ + * $Id: backendid.h,v 1.3 1997/09/07 05:00:40 momjian Exp $ * *------------------------------------------------------------------------- */ -#ifndef BACKENDID_H +#ifndef BACKENDID_H #define BACKENDID_H /* ---------------- - * -cim 8/17/90 + * -cim 8/17/90 * ---------------- */ -typedef int16 BackendId; /* unique currently active backend identifier */ +typedef int16 BackendId; /* unique currently active backend + * identifier */ -#define InvalidBackendId (-1) +#define InvalidBackendId (-1) -typedef int32 BackendTag; /* unique backend identifier */ +typedef int32 BackendTag; /* unique backend identifier */ -#define InvalidBackendTag (-1) +#define InvalidBackendTag (-1) -extern BackendId MyBackendId; /* backend id of this backend */ -extern BackendTag MyBackendTag; /* backend tag of this backend */ +extern BackendId MyBackendId; /* backend id of this backend */ +extern BackendTag MyBackendTag; /* backend tag of this backend */ -#endif /* BACKENDID_H */ +#endif /* BACKENDID_H */ |