summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorHiroshi Inoue2000-01-17 01:15:19 +0000
committerHiroshi Inoue2000-01-17 01:15:19 +0000
commit1500e262b55b581f5f11ce842ef98945c35d8656 (patch)
tree3194d3ad28d8d697314ee9fd17db50da4e35028e /src/include
parent116ba5d81438be59dd319c9732f1c8235457c69a (diff)
Fix for TODO item * spinlock stuck problem when elog(FATAL)
and elog(ERROR) inside bufmgr.
Diffstat (limited to 'src/include')
-rw-r--r--src/include/storage/bufmgr.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/storage/bufmgr.h b/src/include/storage/bufmgr.h
index fcf9e730ac7..21b43a076d0 100644
--- a/src/include/storage/bufmgr.h
+++ b/src/include/storage/bufmgr.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: bufmgr.h,v 1.32 1999/09/28 11:40:53 vadim Exp $
+ * $Id: bufmgr.h,v 1.33 2000/01/17 01:15:19 inoue Exp $
*
*-------------------------------------------------------------------------
*/
@@ -186,5 +186,6 @@ extern void SetBufferCommitInfoNeedsSave(Buffer buffer);
extern void UnlockBuffers(void);
extern void LockBuffer(Buffer buffer, int mode);
+extern void AbortBufferIO(void);
#endif