8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8962b61 commit e1b398cCopy full SHA for e1b398c
contrib/pg_buffercache/pg_buffercache_pages.c
@@ -3,7 +3,7 @@
3
* pg_buffercache_pages.c
4
* display some contents of the buffer cache
5
*
6
- * $PostgreSQL: pgsql/contrib/pg_buffercache/pg_buffercache_pages.c,v 1.1 2005/03/12 15:36:24 neilc Exp $
+ * $PostgreSQL: pgsql/contrib/pg_buffercache/pg_buffercache_pages.c,v 1.2 2005/03/31 00:45:26 neilc Exp $
7
*-------------------------------------------------------------------------
8
*/
9
#include "postgres.h"
@@ -17,6 +17,11 @@
17
18
#define NUM_BUFFERCACHE_PAGES_ELEM 6
19
20
+#if defined(WIN32) || defined(__CYGWIN__)
21
+extern DLLIMPORT BufferDesc *BufferDescriptors;
22
+extern DLLIMPORT volatile uint32 InterruptHoldoffCount;
23
+#endif
24
+
25
26
/*
27
* Record structure holding the to be exposed cache data.
0 commit comments