2018-08-05 22:09:54 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* sched/group/group_exitinfo.c
|
|
|
|
*
|
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
|
2018-08-05 22:09:54 +08:00
|
|
|
*
|
2021-02-08 23:33:58 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2018-08-05 22:09:54 +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.
|
2018-08-05 22:09:54 +08:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
2021-05-18 14:59:14 +08:00
|
|
|
#include <assert.h>
|
2018-08-05 22:09:54 +08:00
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include <nuttx/sched.h>
|
2021-05-14 10:03:23 +08:00
|
|
|
#include <nuttx/spinlock.h>
|
2018-08-05 22:09:54 +08:00
|
|
|
#include <nuttx/binfmt/binfmt.h>
|
|
|
|
|
|
|
|
#include "sched/sched.h"
|
|
|
|
#include "group/group.h"
|
|
|
|
|
|
|
|
#ifdef CONFIG_BINFMT_LOADABLE
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: group_exitinfo
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* This function may be called to when a task is loaded into memory. It
|
|
|
|
* will setup the to automatically unload the module when the task exits.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* pid - The task ID of the newly loaded task
|
|
|
|
* bininfo - This structure allocated with kmm_malloc(). This memory
|
|
|
|
* persists until the task exits and will be used unloads
|
|
|
|
* the module from memory.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* This is a NuttX internal function so it follows the convention that
|
|
|
|
* 0 (OK) is returned on success and a negated errno is returned on
|
|
|
|
* failure.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int group_exitinfo(pid_t pid, FAR struct binary_s *bininfo)
|
|
|
|
{
|
|
|
|
FAR struct tcb_s *tcb;
|
|
|
|
FAR struct task_group_s *group;
|
|
|
|
irqstate_t flags;
|
|
|
|
|
2018-08-05 22:41:32 +08:00
|
|
|
DEBUGASSERT(bininfo != NULL);
|
arch, boards, drivers, include, sched, wireless: Change spinlock APIs.
Summary:
- This commit changes spinlock APIs (spin_lock_irqsave/spin_unlock_irqrestore)
- In the previous implementation, the global spinlock (i.e. g_irq_spin) was used.
- This commit allows to use caller specific spinlock but also supports to use
g_irq_spin for backword compatibility (In this case, NULL must be specified)
Impact:
- None
Testing:
- Tested with the following configurations
- spresnse:wifi, spresense:wifi_smp
- esp32-devkitc:smp (QEMU), sabre6-quad:smp (QEMU)
- maxi-bit:smp (QEMU), sim:smp
- stm32f4discovery:wifi
Signed-off-by: Masayuki Ishikawa <Masayuki.Ishikawa@jp.sony.com>
2021-02-08 08:21:26 +08:00
|
|
|
flags = spin_lock_irqsave(NULL);
|
2018-08-05 22:09:54 +08:00
|
|
|
|
|
|
|
/* Get the TCB associated with the PID */
|
|
|
|
|
2020-05-09 22:04:45 +08:00
|
|
|
tcb = nxsched_get_tcb(pid);
|
2018-08-05 22:09:54 +08:00
|
|
|
if (tcb == NULL)
|
|
|
|
{
|
arch, boards, drivers, include, sched, wireless: Change spinlock APIs.
Summary:
- This commit changes spinlock APIs (spin_lock_irqsave/spin_unlock_irqrestore)
- In the previous implementation, the global spinlock (i.e. g_irq_spin) was used.
- This commit allows to use caller specific spinlock but also supports to use
g_irq_spin for backword compatibility (In this case, NULL must be specified)
Impact:
- None
Testing:
- Tested with the following configurations
- spresnse:wifi, spresense:wifi_smp
- esp32-devkitc:smp (QEMU), sabre6-quad:smp (QEMU)
- maxi-bit:smp (QEMU), sim:smp
- stm32f4discovery:wifi
Signed-off-by: Masayuki Ishikawa <Masayuki.Ishikawa@jp.sony.com>
2021-02-08 08:21:26 +08:00
|
|
|
spin_unlock_irqrestore(NULL, flags);
|
2018-08-05 22:09:54 +08:00
|
|
|
return -ESRCH;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the group that this task belongs to */
|
|
|
|
|
|
|
|
group = tcb->group;
|
|
|
|
DEBUGASSERT(group != NULL && group->tg_bininfo == NULL);
|
|
|
|
|
|
|
|
/* Save the binary info for use when the task exits */
|
|
|
|
|
|
|
|
group->tg_bininfo = bininfo;
|
2018-08-06 11:36:14 +08:00
|
|
|
|
arch, boards, drivers, include, sched, wireless: Change spinlock APIs.
Summary:
- This commit changes spinlock APIs (spin_lock_irqsave/spin_unlock_irqrestore)
- In the previous implementation, the global spinlock (i.e. g_irq_spin) was used.
- This commit allows to use caller specific spinlock but also supports to use
g_irq_spin for backword compatibility (In this case, NULL must be specified)
Impact:
- None
Testing:
- Tested with the following configurations
- spresnse:wifi, spresense:wifi_smp
- esp32-devkitc:smp (QEMU), sabre6-quad:smp (QEMU)
- maxi-bit:smp (QEMU), sim:smp
- stm32f4discovery:wifi
Signed-off-by: Masayuki Ishikawa <Masayuki.Ishikawa@jp.sony.com>
2021-02-08 08:21:26 +08:00
|
|
|
spin_unlock_irqrestore(NULL, flags);
|
2018-08-05 22:09:54 +08:00
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
2020-02-01 02:07:39 +08:00
|
|
|
#endif /* CONFIG_BINFMT_LOADABLE */
|