diff options
Diffstat (limited to 'src/include/storage/proc.h')
-rw-r--r-- | src/include/storage/proc.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/include/storage/proc.h b/src/include/storage/proc.h index e58758a8c60..e1e582e47e3 100644 --- a/src/include/storage/proc.h +++ b/src/include/storage/proc.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: proc.h,v 1.9 1998/01/23 06:01:25 momjian Exp $ + * $Id: proc.h,v 1.10 1998/01/25 05:15:15 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -35,10 +35,6 @@ typedef struct proc SEMA sem; /* ONE semaphore to sleep on */ int errType; /* error code tells why we woke up */ - int procId; /* unique number for this structure NOT - * unique per backend, these things are - * reused after the backend dies. */ - int critSects; /* If critSects > 0, we are in sensitive * routines that cannot be recovered when * the process fails. */ @@ -69,7 +65,6 @@ typedef struct proc typedef struct procglobal { SHMEM_OFFSET freeProcs; - int numProcs; IPCKey currKey; int32 freeSemMap[MAX_PROC_SEMS / PROC_NSEMS_PER_SET]; } PROC_HDR; |