File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 7
7
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
8
8
* Portions Copyright (c) 1994, Regents of the University of California
9
9
*
10
- * $PostgreSQL: pgsql/src/include/libpq/pqsignal.h,v 1.39 2010/01/16 05:52:29 tgl Exp $
10
+ * $PostgreSQL: pgsql/src/include/libpq/pqsignal.h,v 1.40 2010/01/20 18:54:27 heikki Exp $
11
11
*
12
12
* NOTES
13
13
* This shouldn't be in libpq, but the monitor and some other
21
21
#include <signal.h>
22
22
23
23
#ifdef HAVE_SIGPROCMASK
24
- extern PGDLLIMPORT sigset_t UnBlockSig ,
24
+ extern sigset_t UnBlockSig ,
25
25
BlockSig ,
26
26
StartupBlockSig ;
27
27
28
28
#define PG_SETMASK (mask ) sigprocmask(SIG_SETMASK, mask, NULL)
29
29
#else /* not HAVE_SIGPROCMASK */
30
- extern PGDLLIMPORT int UnBlockSig ,
30
+ extern int UnBlockSig ,
31
31
BlockSig ,
32
32
StartupBlockSig ;
33
33
Original file line number Diff line number Diff line change 5
5
*
6
6
* Portions Copyright (c) 2010-2010, PostgreSQL Global Development Group
7
7
*
8
- * $PostgreSQL: pgsql/src/include/replication/walreceiver.h,v 1.3 2010/01/20 09:16:24 heikki Exp $
8
+ * $PostgreSQL: pgsql/src/include/replication/walreceiver.h,v 1.4 2010/01/20 18:54:27 heikki Exp $
9
9
*
10
10
*-------------------------------------------------------------------------
11
11
*/
@@ -59,7 +59,7 @@ typedef struct
59
59
slock_t mutex ; /* locks shared variables shown above */
60
60
} WalRcvData ;
61
61
62
- extern PGDLLIMPORT WalRcvData * WalRcv ;
62
+ extern WalRcvData * WalRcv ;
63
63
64
64
/* libpqwalreceiver hooks */
65
65
typedef bool (* walrcv_connect_type ) (char * conninfo , XLogRecPtr startpoint );
Original file line number Diff line number Diff line change 11
11
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
12
12
* Portions Copyright (c) 1994, Regents of the University of California
13
13
*
14
- * $PostgreSQL: pgsql/src/include/storage/ipc.h,v 1.80 2010/01/16 00:04:41 tgl Exp $
14
+ * $PostgreSQL: pgsql/src/include/storage/ipc.h,v 1.81 2010/01/20 18:54:27 heikki Exp $
15
15
*
16
16
*-------------------------------------------------------------------------
17
17
*/
@@ -62,7 +62,7 @@ typedef void (*shmem_startup_hook_type) (void);
62
62
63
63
64
64
/* ipc.c */
65
- extern PGDLLIMPORT bool proc_exit_inprogress ;
65
+ extern bool proc_exit_inprogress ;
66
66
67
67
extern void proc_exit (int code );
68
68
extern void shmem_exit (int code );
You can’t perform that action at this time.
0 commit comments