sinval.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * sinval.h
  4.  *   POSTGRES shared cache invalidation communication definitions.
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: sinval.h,v 1.11.2.1 1999/07/30 17:07:17 scrappy Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef SINVAL_H
  14. #define SINVAL_H
  15. #include "storage/itemptr.h"
  16. #include "storage/spin.h"
  17. extern SPINLOCK SInvalLock;
  18. extern void CreateSharedInvalidationState(IPCKey key, int maxBackends);
  19. extern void AttachSharedInvalidationState(IPCKey key);
  20. extern void InitSharedInvalidationState(void);
  21. extern void RegisterSharedInvalid(int cacheId, Index hashIndex,
  22.   ItemPointer pointer);
  23. extern void InvalidateSharedInvalid(void (*invalFunction) (),
  24. void (*resetFunction) ());
  25. #endif  /* SINVAL_H */