diff options
Diffstat (limited to 'src/include/storage/sinval.h')
-rw-r--r-- | src/include/storage/sinval.h | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/src/include/storage/sinval.h b/src/include/storage/sinval.h index 87f8e00ba6e..fd9025e875f 100644 --- a/src/include/storage/sinval.h +++ b/src/include/storage/sinval.h @@ -1,16 +1,16 @@ /*------------------------------------------------------------------------- * * sinval.h-- - * POSTGRES shared cache invalidation communication definitions. + * POSTGRES shared cache invalidation communication definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: sinval.h,v 1.4 1996/11/10 03:06:00 momjian Exp $ + * $Id: sinval.h,v 1.5 1997/09/07 05:01:36 momjian Exp $ * *------------------------------------------------------------------------- */ -#ifndef SINVAL_H +#ifndef SINVAL_H #define SINVAL_H #include <storage/itemptr.h> @@ -18,13 +18,14 @@ extern SPINLOCK SInvalLock; -extern void CreateSharedInvalidationState(IPCKey key); -extern void AttachSharedInvalidationState(IPCKey key); -extern void InitSharedInvalidationState(void); -extern void RegisterSharedInvalid(int cacheId, Index hashIndex, - ItemPointer pointer); -extern void InvalidateSharedInvalid(void (*invalFunction)(), - void (*resetFunction)()); +extern void CreateSharedInvalidationState(IPCKey key); +extern void AttachSharedInvalidationState(IPCKey key); +extern void InitSharedInvalidationState(void); +extern void +RegisterSharedInvalid(int cacheId, Index hashIndex, + ItemPointer pointer); +extern void InvalidateSharedInvalid(void (*invalFunction) (), + void (*resetFunction) ()); -#endif /* SINVAL_H */ +#endif /* SINVAL_H */ |