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
|
|
|
*
|
2020-03-11 21:23:38 +01:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2014-10-10 14:22:51 +02:00
|
|
|
*
|
2020-03-11 21:23:38 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2014-10-10 14:22:51 +02:00
|
|
|
*
|
2020-03-11 21:23:38 +01:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2014-10-10 14:22:51 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* 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 */
|