diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-09-06 19:37:38 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-09-06 19:37:38 +0000 |
| commit | 22fe3d4b0425fee1af0147a57e05aad70c3badd7 (patch) | |
| tree | b55fbc7554a35c18eb465b7c64675e836cfc74ee /src/include/storage/lock.h | |
| parent | cc8b67a5c32a0cfc10be243e56d5bb10fa40f92d (diff) | |
| download | postgresql-22fe3d4b0425fee1af0147a57e05aad70c3badd7.tar.gz | |
I finally understood what sinvaladt.c is doing --- and it
offended my aesthestic sensibility that there was so much unreadable code
doing so little. Rewritten code is about half the size, faster, and
(I hope) much more intelligible.
Diffstat (limited to 'src/include/storage/lock.h')
| -rw-r--r-- | src/include/storage/lock.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/storage/lock.h b/src/include/storage/lock.h index 87b8538212..8f0f834e0f 100644 --- a/src/include/storage/lock.h +++ b/src/include/storage/lock.h @@ -6,16 +6,16 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: lock.h,v 1.33 1999/07/16 17:07:38 momjian Exp $ + * $Id: lock.h,v 1.34 1999/09/06 19:37:37 tgl Exp $ * *------------------------------------------------------------------------- */ #ifndef LOCK_H_ #define LOCK_H_ +#include "storage/ipc.h" #include "storage/itemptr.h" #include "storage/shmem.h" -#include "storage/sinvaladt.h" #include "utils/array.h" extern SPINLOCK LockMgrLock; |
