diff options
| author | Jens Gustedt <Jens.Gustedt@inria.fr> | 2018-01-03 14:17:12 +0100 | 
|---|---|---|
| committer | Rich Felker <dalias@aerifal.cx> | 2018-01-09 13:15:27 -0500 | 
| commit | 32482f61da7650ff10741bd5aedd66bbc3ea165b (patch) | |
| tree | 8f6e3736ffffae67f3411e86f7a56f2ca2080137 /src/internal/pthread_impl.h | |
| parent | c4bc0b1a64e1ef1e105df84401805a16e8dbe82a (diff) | |
| download | musl-32482f61da7650ff10741bd5aedd66bbc3ea165b.tar.gz | |
revise the definition of multiple basic locks in the code
In all cases this is just a change from two volatile int to one.
Diffstat (limited to 'src/internal/pthread_impl.h')
| -rw-r--r-- | src/internal/pthread_impl.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/internal/pthread_impl.h b/src/internal/pthread_impl.h index 602d6f56..f0b2c20c 100644 --- a/src/internal/pthread_impl.h +++ b/src/internal/pthread_impl.h @@ -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; | 
