2015-10-03 07:25:53 -06:00
|
|
|
/****************************************************************************
|
2014-08-08 14:06:42 -06:00
|
|
|
* sched/group/group_find.c
|
2013-01-26 17:28:20 +00:00
|
|
|
*
|
2021-02-08 16:33:58 +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
|
2013-01-26 17:28:20 +00:00
|
|
|
*
|
2021-02-08 16:33:58 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2013-01-26 17:28:20 +00:00
|
|
|
*
|
2021-02-08 16:33:58 +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.
|
2013-01-26 17:28:20 +00:00
|
|
|
*
|
2015-10-03 07:25:53 -06:00
|
|
|
****************************************************************************/
|
2013-01-26 17:28:20 +00:00
|
|
|
|
2015-10-03 07:25:53 -06:00
|
|
|
/****************************************************************************
|
2013-01-26 17:28:20 +00:00
|
|
|
* Included Files
|
2015-10-03 07:25:53 -06:00
|
|
|
****************************************************************************/
|
2013-01-26 17:28:20 +00:00
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <sched.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
2016-02-14 08:17:46 -06:00
|
|
|
#include <nuttx/irq.h>
|
2013-01-26 17:28:20 +00:00
|
|
|
#include <nuttx/kmalloc.h>
|
2019-08-02 10:01:30 -06:00
|
|
|
#include <nuttx/sched.h>
|
2013-01-26 17:28:20 +00:00
|
|
|
|
2014-08-08 14:06:42 -06:00
|
|
|
#include "group/group.h"
|
2014-08-08 13:53:29 -06:00
|
|
|
#include "environ/environ.h"
|
2013-01-26 17:28:20 +00:00
|
|
|
|
2015-10-03 07:25:53 -06:00
|
|
|
/****************************************************************************
|
2013-01-26 17:28:20 +00:00
|
|
|
* Public Functions
|
2015-10-03 07:25:53 -06:00
|
|
|
****************************************************************************/
|
2013-01-26 17:28:20 +00:00
|
|
|
|
2015-10-03 07:25:53 -06:00
|
|
|
/****************************************************************************
|
2019-08-02 10:01:30 -06:00
|
|
|
* Name: group_findby_grpid
|
2013-01-26 17:28:20 +00:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Given a group ID, find the group task structure with that ID. IDs are
|
2014-04-13 14:32:20 -06:00
|
|
|
* used instead of pointers to group structures. This is done because a
|
2021-02-08 18:46:31 +01:00
|
|
|
* group can disappear at any time leaving a stale pointer; an ID is
|
|
|
|
* cleaner because if the group disappears, this function will fail
|
|
|
|
* gracefully.
|
2013-01-26 17:28:20 +00:00
|
|
|
*
|
2018-03-13 09:52:27 -06:00
|
|
|
* Input Parameters:
|
2019-08-02 10:01:30 -06:00
|
|
|
* grpid - The group ID to find.
|
2013-01-26 17:28:20 +00:00
|
|
|
*
|
2018-02-01 10:00:02 -06:00
|
|
|
* Returned Value:
|
2013-01-26 17:28:20 +00:00
|
|
|
* On success, a pointer to the group task structure is returned. This
|
|
|
|
* function can fail only if there is no group that corresponds to the
|
2013-02-03 16:43:58 +00:00
|
|
|
* group ID.
|
2013-01-26 17:28:20 +00:00
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
* Called during when signally tasks in a safe context. No special
|
|
|
|
* precautions should be required here. However, extra care is taken when
|
|
|
|
* accessing the global g_grouphead list.
|
|
|
|
*
|
2015-10-03 07:25:53 -06:00
|
|
|
****************************************************************************/
|
2013-01-26 17:28:20 +00:00
|
|
|
|
2014-08-26 14:54:39 -06:00
|
|
|
#if defined(HAVE_GROUP_MEMBERS) || defined(CONFIG_ARCH_ADDRENV)
|
2019-08-02 10:01:30 -06:00
|
|
|
FAR struct task_group_s *group_findby_grpid(grpid_t grpid)
|
2013-01-26 17:28:20 +00:00
|
|
|
{
|
|
|
|
FAR struct task_group_s *group;
|
|
|
|
irqstate_t flags;
|
|
|
|
|
2013-02-05 19:50:37 +00:00
|
|
|
/* Find the status structure with the matching GID */
|
2013-01-26 17:28:20 +00:00
|
|
|
|
2016-02-14 08:17:46 -06:00
|
|
|
flags = enter_critical_section();
|
2013-01-26 17:28:20 +00:00
|
|
|
for (group = g_grouphead; group; group = group->flink)
|
|
|
|
{
|
2019-08-02 10:01:30 -06:00
|
|
|
if (group->tg_grpid == grpid)
|
2013-01-26 17:28:20 +00:00
|
|
|
{
|
2016-02-14 08:17:46 -06:00
|
|
|
leave_critical_section(flags);
|
2013-01-26 17:28:20 +00:00
|
|
|
return group;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-14 08:17:46 -06:00
|
|
|
leave_critical_section(flags);
|
2013-01-26 17:28:20 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-10-03 07:25:53 -06:00
|
|
|
/****************************************************************************
|
2014-08-26 14:54:39 -06:00
|
|
|
* Name: group_findbypid
|
2013-02-05 19:50:37 +00:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Given a task ID, find the group task structure with was started by that
|
|
|
|
* task ID. That task's ID is retained in the group as tg_task and will
|
|
|
|
* be remember even if the main task thread leaves the group.
|
|
|
|
*
|
2018-03-13 09:52:27 -06:00
|
|
|
* Input Parameters:
|
2013-02-05 19:50:37 +00:00
|
|
|
* pid - The task ID of the main task thread.
|
|
|
|
*
|
2018-02-01 10:00:02 -06:00
|
|
|
* Returned Value:
|
2013-02-05 19:50:37 +00:00
|
|
|
* On success, a pointer to the group task structure is returned. This
|
|
|
|
* function can fail only if there is no group that corresponds to the
|
|
|
|
* task ID.
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
* Called during when signally tasks in a safe context. No special
|
|
|
|
* precautions should be required here. However, extra care is taken when
|
|
|
|
* accessing the global g_grouphead list.
|
|
|
|
*
|
2015-10-03 07:25:53 -06:00
|
|
|
****************************************************************************/
|
2013-02-05 19:50:37 +00:00
|
|
|
|
2013-02-06 00:06:35 +00:00
|
|
|
#ifdef HAVE_GROUP_MEMBERS
|
2013-02-05 19:50:37 +00:00
|
|
|
FAR struct task_group_s *group_findbypid(pid_t pid)
|
|
|
|
{
|
|
|
|
FAR struct task_group_s *group;
|
|
|
|
irqstate_t flags;
|
|
|
|
|
|
|
|
/* Find the status structure with the matching PID */
|
|
|
|
|
2016-02-14 08:17:46 -06:00
|
|
|
flags = enter_critical_section();
|
2013-02-05 19:50:37 +00:00
|
|
|
for (group = g_grouphead; group; group = group->flink)
|
|
|
|
{
|
|
|
|
if (group->tg_task == pid)
|
|
|
|
{
|
2016-02-14 08:17:46 -06:00
|
|
|
leave_critical_section(flags);
|
2013-02-05 19:50:37 +00:00
|
|
|
return group;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-14 08:17:46 -06:00
|
|
|
leave_critical_section(flags);
|
2013-02-05 19:50:37 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#endif
|