Thanks to visit codestin.com Credit goes to github.com
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 99b384b commit e9b978cCopy full SHA for e9b978c
contrib/pg_freespacemap/pg_freespacemap.c
@@ -3,7 +3,7 @@
3
* pg_freespacemap.c
4
* display some contents of the free space map.
5
*
6
- * $PostgreSQL: pgsql/contrib/pg_freespacemap/pg_freespacemap.c,v 1.1 2006/02/12 03:55:53 momjian Exp $
+ * $PostgreSQL: pgsql/contrib/pg_freespacemap/pg_freespacemap.c,v 1.2 2006/02/14 15:03:59 tgl Exp $
7
*-------------------------------------------------------------------------
8
*/
9
#include "postgres.h"
@@ -15,6 +15,8 @@
15
#define NUM_FREESPACE_PAGES_ELEM 6
16
17
#if defined(WIN32) || defined(__CYGWIN__)
18
+/* Need DLLIMPORT for some things that are not so marked in main headers */
19
+extern DLLIMPORT int MaxFSMPages;
20
extern DLLIMPORT volatile uint32 InterruptHoldoffCount;
21
#endif
22
0 commit comments