2015-10-03 21:25:53 +08:00
|
|
|
/****************************************************************************
|
2021-03-09 05:39:04 +08:00
|
|
|
* sched/group/group_find.c
|
2013-01-27 01:28:20 +08:00
|
|
|
*
|
2021-02-08 23:33:58 +08: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-27 01:28:20 +08:00
|
|
|
*
|
2021-02-08 23:33:58 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2013-01-27 01:28:20 +08:00
|
|
|
*
|
2021-02-08 23:33:58 +08: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-27 01:28:20 +08:00
|
|
|
*
|
2015-10-03 21:25:53 +08:00
|
|
|
****************************************************************************/
|
2013-01-27 01:28:20 +08:00
|
|
|
|
2015-10-03 21:25:53 +08:00
|
|
|
/****************************************************************************
|
2013-01-27 01:28:20 +08:00
|
|
|
* Included Files
|
2015-10-03 21:25:53 +08:00
|
|
|
****************************************************************************/
|
2013-01-27 01:28:20 +08:00
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <sched.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
2016-02-14 22:17:46 +08:00
|
|
|
#include <nuttx/irq.h>
|
2013-01-27 01:28:20 +08:00
|
|
|
#include <nuttx/kmalloc.h>
|
2019-08-03 00:01:30 +08:00
|
|
|
#include <nuttx/sched.h>
|
2013-01-27 01:28:20 +08:00
|
|
|
|
2014-08-09 04:06:42 +08:00
|
|
|
#include "group/group.h"
|
2014-08-09 03:53:29 +08:00
|
|
|
#include "environ/environ.h"
|
2013-01-27 01:28:20 +08:00
|
|
|
|
2015-10-03 21:25:53 +08:00
|
|
|
/****************************************************************************
|
2013-01-27 01:28:20 +08:00
|
|
|
* Public Functions
|
2015-10-03 21:25:53 +08:00
|
|
|
****************************************************************************/
|
2013-01-27 01:28:20 +08:00
|
|
|
|
2015-10-03 21:25:53 +08:00
|
|
|
/****************************************************************************
|
2014-08-27 04:54:39 +08:00
|
|
|
* Name: group_findbypid
|
2013-02-06 03:50:37 +08:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Given a task ID, find the group task structure with was started by that
|
2021-03-04 01:11:40 +08:00
|
|
|
* task ID. That task's ID is retained in the group as tg_pid and will
|
2013-02-06 03:50:37 +08:00
|
|
|
* be remember even if the main task thread leaves the group.
|
|
|
|
*
|
2018-03-13 23:52:27 +08:00
|
|
|
* Input Parameters:
|
2013-02-06 03:50:37 +08:00
|
|
|
* pid - The task ID of the main task thread.
|
|
|
|
*
|
2018-02-02 00:00:02 +08:00
|
|
|
* Returned Value:
|
2013-02-06 03:50:37 +08: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 21:25:53 +08:00
|
|
|
****************************************************************************/
|
2013-02-06 03:50:37 +08:00
|
|
|
|
2021-03-04 01:11:40 +08:00
|
|
|
#if defined(HAVE_GROUP_MEMBERS) || defined(CONFIG_ARCH_ADDRENV)
|
2013-02-06 03:50:37 +08: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 22:17:46 +08:00
|
|
|
flags = enter_critical_section();
|
2013-02-06 03:50:37 +08:00
|
|
|
for (group = g_grouphead; group; group = group->flink)
|
|
|
|
{
|
2021-03-04 01:11:40 +08:00
|
|
|
if (group->tg_pid == pid)
|
2013-02-06 03:50:37 +08:00
|
|
|
{
|
2016-02-14 22:17:46 +08:00
|
|
|
leave_critical_section(flags);
|
2013-02-06 03:50:37 +08:00
|
|
|
return group;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-14 22:17:46 +08:00
|
|
|
leave_critical_section(flags);
|
2013-02-06 03:50:37 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#endif
|