sched/signal: Remove redundant checks

This commit is contained in:
Yoshinori Sugino 2020-11-27 18:43:20 +09:00 committed by Xiang Xiao
parent 03d461f7e2
commit 8acff49a14
2 changed files with 2 additions and 8 deletions

View File

@ -100,10 +100,7 @@ FAR sigq_t *nxsig_alloc_pendingsigaction(void)
{
/* No...Try the resource pool */
if (!sigq)
{
sigq = (FAR sigq_t *)kmm_malloc((sizeof (sigq_t)));
}
sigq = (FAR sigq_t *)kmm_malloc((sizeof (sigq_t)));
/* Check if we got an allocated message */

View File

@ -172,10 +172,7 @@ static FAR sigpendq_t *nxsig_alloc_pendingsignal(void)
{
/* No... Allocate the pending signal */
if (!sigpend)
{
sigpend = (FAR sigpendq_t *)kmm_malloc((sizeof (sigpendq_t)));
}
sigpend = (FAR sigpendq_t *)kmm_malloc((sizeof (sigpendq_t)));
/* Check if we got an allocated message */