mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-12 17:17:44 -04:00
Fix bug incorrect pointer to address
This commit is contained in:
parent
ef4c305244
commit
d4011f4d93
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