fix restrict violations in internal use of several functions
authorSamuel Holland <samuel@sholland.org>
Sat, 29 Jun 2019 23:19:04 +0000 (18:19 -0500)
committerRich Felker <dalias@aerifal.cx>
Wed, 10 Jul 2019 21:06:00 +0000 (17:06 -0400)
The old/new parameters to pthread_sigmask, sigprocmask, and setitimer
are marked restrict, so passing the same address to both is
prohibited. Modify callers of these functions to use a separate object
for each argument.


No differences found