mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-13 01:27:48 -04:00
fix pthread_sigmask 3 arg type
This commit is contained in:
parent
9c048e0c71
commit
7619475874
1 changed files with 1 additions and 1 deletions
2
portable/ThirdParty/GCC/Posix/port.c
vendored
2
portable/ThirdParty/GCC/Posix/port.c
vendored
|
@ -525,7 +525,7 @@ int iRet;
|
||||||
* will be unblocked.
|
* will be unblocked.
|
||||||
*/
|
*/
|
||||||
(void)pthread_sigmask( SIG_SETMASK, &xAllSignals,
|
(void)pthread_sigmask( SIG_SETMASK, &xAllSignals,
|
||||||
*&xSchedulerOriginalSignalMask );
|
&xSchedulerOriginalSignalMask );
|
||||||
|
|
||||||
/* SIG_RESUME is only used with sigwait() so doesn't need a
|
/* SIG_RESUME is only used with sigwait() so doesn't need a
|
||||||
handler. */
|
handler. */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue