|
13 | 13 | * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
|
14 | 14 | * Portions Copyright (c) 1994, Regents of the University of California
|
15 | 15 | *
|
16 |
| - * $PostgreSQL: pgsql/src/include/miscadmin.h,v 1.181 2005/10/21 21:43:46 tgl Exp $ |
| 16 | + * $PostgreSQL: pgsql/src/include/miscadmin.h,v 1.182 2005/10/22 17:09:48 tgl Exp $ |
17 | 17 | *
|
18 | 18 | * NOTES
|
19 | 19 | * some of the information in this file should be moved to other files.
|
|
88 | 88 |
|
89 | 89 | #defineCHECK_FOR_INTERRUPTS() \
|
90 | 90 | do { \
|
91 |
| -if (UNBLOCKED_SIGNAL_QUEUE()) \ |
92 |
| -pgwin32_check_queued_signals(); \ |
| 91 | +pgwin32_check_queued_signals(); \ |
93 | 92 | if (InterruptPending) \
|
94 | 93 | ProcessInterrupts(); \
|
95 | 94 | } while(0)
|
|