Content-Length: 271880 | pFad | http://github.com/postgrespro/postgres/commit/87fb04af1e705b615ac01feba958f841ea4a71a6
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 044c99b commit 87fb04aCopy full SHA for 87fb04a
src/include/miscadmin.h
@@ -98,16 +98,16 @@ extern void ProcessInterrupts(void);
98
99
#define CHECK_FOR_INTERRUPTS() \
100
do { \
101
- if (InterruptPending) \
+ if (unlikely(InterruptPending)) \
102
ProcessInterrupts(); \
103
} while(0)
104
#else /* WIN32 */
105
106
107
108
- if (UNBLOCKED_SIGNAL_QUEUE()) \
+ if (unlikely(UNBLOCKED_SIGNAL_QUEUE())) \
109
pgwin32_dispatch_queued_signals(); \
110
111
112
113
#endif /* WIN32 */
Fetched URL: http://github.com/postgrespro/postgres/commit/87fb04af1e705b615ac01feba958f841ea4a71a6
Alternative Proxies:
Alternative Proxy
pFad Proxy
pFad v3 Proxy
pFad v4 Proxy
0 commit comments