2014-10-10 14:22:51 +02:00
|
|
|
/****************************************************************************
|
2014-10-10 16:35:58 +02:00
|
|
|
* sched/wqueue/work_signal.c
|
2014-10-10 14:22:51 +02:00
|
|
|
*
|
2018-08-25 22:52:13 +02:00
|
|
|
* Copyright (C) 2014, 2016-2018 Gregory Nutt. All rights reserved.
|
2014-10-10 14:22:51 +02:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2014-10-10 16:35:58 +02:00
|
|
|
#include <signal.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2014-10-10 14:22:51 +02:00
|
|
|
#include <nuttx/wqueue.h>
|
2017-10-07 16:22:18 +02:00
|
|
|
#include <nuttx/signal.h>
|
2014-10-10 14:22:51 +02:00
|
|
|
|
|
|
|
#include "wqueue/wqueue.h"
|
|
|
|
|
2014-10-10 16:35:58 +02:00
|
|
|
#ifdef CONFIG_SCHED_WORKQUEUE
|
2014-10-10 14:22:51 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
2014-10-10 16:35:58 +02:00
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
2016-02-18 00:15:08 +01:00
|
|
|
|
2014-10-10 16:35:58 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: work_signal
|
2014-10-10 14:22:51 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2014-10-10 16:35:58 +02:00
|
|
|
* Signal the worker thread to process the work queue now. This function
|
|
|
|
* is used internally by the work logic but could also be used by the
|
|
|
|
* user to force an immediate re-assessment of pending work.
|
2014-10-10 14:22:51 +02:00
|
|
|
*
|
2018-02-01 17:00:02 +01:00
|
|
|
* Input Parameters:
|
2014-10-10 16:35:58 +02:00
|
|
|
* qid - The work queue ID
|
2014-10-10 14:22:51 +02:00
|
|
|
*
|
|
|
|
* Returned Value:
|
2017-10-07 16:22:18 +02:00
|
|
|
* Zero (OK) on success, a negated errno value on failure
|
2014-10-10 14:22:51 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2014-10-10 16:35:58 +02:00
|
|
|
int work_signal(int qid)
|
2014-10-10 14:22:51 +02:00
|
|
|
{
|
2018-08-25 22:52:13 +02:00
|
|
|
FAR struct kwork_wqueue_s *work;
|
|
|
|
int threads;
|
|
|
|
int i;
|
2014-10-10 14:22:51 +02:00
|
|
|
|
2014-10-10 16:35:58 +02:00
|
|
|
/* Get the process ID of the worker thread */
|
2014-10-10 14:22:51 +02:00
|
|
|
|
2014-10-10 16:35:58 +02:00
|
|
|
#ifdef CONFIG_SCHED_HPWORK
|
|
|
|
if (qid == HPWORK)
|
|
|
|
{
|
2018-08-25 22:52:13 +02:00
|
|
|
work = (FAR struct kwork_wqueue_s *)&g_hpwork;
|
|
|
|
threads = CONFIG_SCHED_HPNTHREADS;
|
2014-10-10 16:35:58 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_SCHED_LPWORK
|
|
|
|
if (qid == LPWORK)
|
|
|
|
{
|
2018-08-25 22:52:13 +02:00
|
|
|
work = (FAR struct kwork_wqueue_s *)&g_lpwork;
|
|
|
|
threads = CONFIG_SCHED_LPNTHREADS;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2016-03-22 15:15:49 +01:00
|
|
|
|
2018-08-25 22:52:13 +02:00
|
|
|
/* Find an IDLE worker thread */
|
2014-10-11 00:24:50 +02:00
|
|
|
|
2018-08-25 22:52:13 +02:00
|
|
|
for (i = 0; i < threads; i++)
|
|
|
|
{
|
|
|
|
/* Is this worker thread busy? */
|
2014-10-11 00:24:50 +02:00
|
|
|
|
2018-08-25 22:52:13 +02:00
|
|
|
if (!work->worker[i].busy)
|
2016-11-06 14:56:38 +01:00
|
|
|
{
|
2018-08-25 22:52:13 +02:00
|
|
|
/* No.. select this thread */
|
|
|
|
|
|
|
|
break;
|
2016-11-06 14:56:38 +01:00
|
|
|
}
|
2018-08-25 22:52:13 +02:00
|
|
|
}
|
2016-11-06 14:56:38 +01:00
|
|
|
|
2018-08-25 22:52:13 +02:00
|
|
|
/* If all of the IDLE threads are busy, then just return successfully */
|
2016-11-06 14:56:38 +01:00
|
|
|
|
2018-08-25 22:52:13 +02:00
|
|
|
if (i >= threads)
|
2014-10-10 16:35:58 +02:00
|
|
|
{
|
2018-08-25 22:52:13 +02:00
|
|
|
return OK;
|
2014-10-10 16:35:58 +02:00
|
|
|
}
|
2014-10-10 14:22:51 +02:00
|
|
|
|
2018-08-25 22:52:13 +02:00
|
|
|
/* Otherwise, signal the first IDLE thread found */
|
2014-10-10 14:22:51 +02:00
|
|
|
|
2018-08-25 22:52:13 +02:00
|
|
|
return nxsig_kill(work->worker[i].pid, SIGWORK);
|
2014-10-10 14:22:51 +02:00
|
|
|
}
|
|
|
|
|
2014-10-10 16:35:58 +02:00
|
|
|
#endif /* CONFIG_SCHED_WORKQUEUE */
|