File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ typedef struct FixedParallelState
113
113
int ParallelWorkerNumber = -1 ;
114
114
115
115
/* Is there a parallel message pending which we need to receive? */
116
- volatile bool ParallelMessagePending = false;
116
+ volatile sig_atomic_t ParallelMessagePending = false;
117
117
118
118
/* Are we initializing a parallel worker? */
119
119
bool InitializingParallelWorker = false;
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ typedef struct ParallelWorkerContext
54
54
shm_toc * toc ;
55
55
} ParallelWorkerContext ;
56
56
57
- extern PGDLLIMPORT volatile bool ParallelMessagePending ;
57
+ extern PGDLLIMPORT volatile sig_atomic_t ParallelMessagePending ;
58
58
extern PGDLLIMPORT int ParallelWorkerNumber ;
59
59
extern PGDLLIMPORT bool InitializingParallelWorker ;
60
60
You can’t perform that action at this time.
0 commit comments