revise the definition of multiple basic locks in the code

In all cases this is just a change from two volatile int to one.
This commit is contained in:
Jens Gustedt
2018-01-09 13:15:27 -05:00
committed by Rich Felker
parent c4bc0b1a64
commit 32482f61da
15 changed files with 16 additions and 16 deletions
+2 -2
View File
@@ -39,8 +39,8 @@ struct pthread {
int unblock_cancel;
volatile int timer_id;
locale_t locale;
volatile int killlock[2];
volatile int exitlock[2];
volatile int killlock[1];
volatile int exitlock[1];
volatile int startlock[2];
unsigned long sigmask[_NSIG/8/sizeof(long)];
char *dlerror_buf;