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