2008-01-30 00:58:39 +01:00
|
|
|
/****************************************************************************
|
2008-07-30 02:28:43 +02:00
|
|
|
* sched/sched_setuptaskfiles.c
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2008-01-30 00:58:39 +01:00
|
|
|
* Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
|
2007-02-18 00:21:28 +01:00
|
|
|
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
2008-01-30 00:58:39 +01:00
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
2007-02-18 00:21:28 +01:00
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
2008-01-30 00:58:39 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-01-30 00:58:39 +01:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Included Files
|
2008-01-30 00:58:39 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
2007-09-01 20:06:15 +02:00
|
|
|
|
2007-02-18 00:21:28 +01:00
|
|
|
#include <sched.h>
|
|
|
|
#include <errno.h>
|
2007-09-01 20:06:15 +02:00
|
|
|
|
2007-02-18 00:21:28 +01:00
|
|
|
#include <nuttx/fs.h>
|
2007-09-01 20:06:15 +02:00
|
|
|
#include <nuttx/net.h>
|
|
|
|
|
2007-02-18 00:21:28 +01:00
|
|
|
#include "os_internal.h"
|
|
|
|
|
2007-12-28 02:44:34 +01:00
|
|
|
#if CONFIG_NFILE_DESCRIPTORS > 0 || CONFIG_NSOCKET_DESCRIPTORS > 0
|
|
|
|
|
2008-01-30 00:58:39 +01:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Private Functions
|
2008-01-30 00:58:39 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-01-30 00:58:39 +01:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Public Functions
|
2008-01-30 00:58:39 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-01-30 00:58:39 +01:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Function: sched_setuptaskfiles
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Configure a newly allocated TCB so that it will inherit
|
|
|
|
* file descriptors and streams from the parent task.
|
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* tcb - tcb of the new task.
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
*
|
2008-01-30 00:58:39 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2007-02-27 22:17:21 +01:00
|
|
|
int sched_setuptaskfiles(FAR _TCB *tcb)
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
2008-07-30 02:28:43 +02:00
|
|
|
#if CONFIG_NFILE_DESCRIPTORS > 0
|
2007-02-27 22:17:21 +01:00
|
|
|
FAR _TCB *rtcb = (FAR _TCB*)g_readytorun.head;
|
2007-02-18 00:21:28 +01:00
|
|
|
int i;
|
2008-07-30 02:28:43 +02:00
|
|
|
#endif /* CONFIG_NFILE_DESCRIPTORS > 0 */
|
2007-03-21 21:02:52 +01:00
|
|
|
int ret = OK;
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2007-09-01 20:06:15 +02:00
|
|
|
#if CONFIG_NFILE_DESCRIPTORS > 0
|
2007-02-18 00:21:28 +01:00
|
|
|
/* Allocate file descriptors for the TCB */
|
|
|
|
|
|
|
|
tcb->filelist = files_alloclist();
|
|
|
|
if (!tcb->filelist)
|
|
|
|
{
|
|
|
|
*get_errno_ptr() = ENOMEM;
|
|
|
|
return ERROR;
|
|
|
|
}
|
2007-09-01 20:06:15 +02:00
|
|
|
#endif /* CONFIG_NFILE_DESCRIPTORS */
|
|
|
|
|
|
|
|
#if CONFIG_NSOCKET_DESCRIPTORS > 0
|
|
|
|
/* Allocate socket descriptors for the TCB */
|
|
|
|
|
|
|
|
tcb->sockets = net_alloclist();
|
|
|
|
if (!tcb->sockets)
|
|
|
|
{
|
|
|
|
*get_errno_ptr() = ENOMEM;
|
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_NSOCKET_DESCRIPTORS */
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-07-30 02:28:43 +02:00
|
|
|
#if CONFIG_NFILE_DESCRIPTORS > 0
|
2008-09-19 16:53:53 +02:00
|
|
|
/* Duplicate the file descriptors */
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
if (rtcb->filelist)
|
|
|
|
{
|
2008-07-30 02:28:43 +02:00
|
|
|
for (i = 0; i < CONFIG_NFILE_DESCRIPTORS; i++)
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
2008-07-30 02:28:43 +02:00
|
|
|
/* Check if this file is opened */
|
|
|
|
|
|
|
|
if (rtcb->filelist->fl_files[i].f_inode)
|
|
|
|
{
|
|
|
|
(void)files_dup(&rtcb->filelist->fl_files[i],
|
|
|
|
&tcb->filelist->fl_files[i]);
|
|
|
|
}
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#if CONFIG_NFILE_STREAMS > 0
|
2007-03-11 18:37:47 +01:00
|
|
|
/* Allocate file streams for the TCB */
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2007-03-21 21:02:52 +01:00
|
|
|
ret = sched_setupstreams(tcb);
|
2007-02-18 00:21:28 +01:00
|
|
|
#endif /* CONFIG_NFILE_STREAMS */
|
2008-07-30 02:28:43 +02:00
|
|
|
#endif /* CONFIG_NFILE_DESCRIPTORS */
|
2007-03-21 21:02:52 +01:00
|
|
|
return ret;
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|
|
|
|
|
2007-09-01 20:06:15 +02:00
|
|
|
#endif /* CONFIG_NFILE_DESCRIPTORS || CONFIG_NSOCKET_DESCRIPTORS */
|