2008-07-30 00:28:43 +00:00
|
|
|
/****************************************************************************
|
2021-03-08 18:39:04 -03:00
|
|
|
* sched/group/group_setupidlefiles.c
|
2007-02-17 23:21:28 +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
|
2007-02-17 23:21:28 +00:00
|
|
|
*
|
2021-02-08 16:33:58 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-02-17 23:21:28 +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.
|
2007-02-17 23:21:28 +00:00
|
|
|
*
|
2008-07-30 00:28:43 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2008-07-30 00:28:43 +00:00
|
|
|
/****************************************************************************
|
2007-02-17 23:21:28 +00:00
|
|
|
* Included Files
|
2008-07-30 00:28:43 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
2007-09-01 18:06:15 +00:00
|
|
|
|
2007-02-17 23:21:28 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
2007-03-20 16:51:12 +00:00
|
|
|
#include <fcntl.h>
|
2007-02-17 23:21:28 +00:00
|
|
|
#include <sched.h>
|
|
|
|
#include <errno.h>
|
2010-11-06 01:57:50 +00:00
|
|
|
#include <debug.h>
|
2007-09-01 18:06:15 +00:00
|
|
|
|
2012-03-21 18:01:07 +00:00
|
|
|
#include <nuttx/fs/fs.h>
|
2012-03-03 23:18:34 +00:00
|
|
|
#include <nuttx/net/net.h>
|
2007-09-01 18:06:15 +00:00
|
|
|
|
2014-08-08 14:06:42 -06:00
|
|
|
#include "group/group.h"
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2008-07-30 00:28:43 +00:00
|
|
|
/****************************************************************************
|
2007-02-17 23:21:28 +00:00
|
|
|
* Public Functions
|
2008-07-30 00:28:43 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2008-07-30 00:28:43 +00:00
|
|
|
/****************************************************************************
|
2013-01-26 23:49:02 +00:00
|
|
|
* Name: group_setupidlefiles
|
2007-02-17 23:21:28 +00:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Configure the idle thread's TCB.
|
|
|
|
*
|
2018-03-13 09:52:27 -06:00
|
|
|
* Input Parameters:
|
2007-02-17 23:21:28 +00:00
|
|
|
* tcb - tcb of the idle task.
|
|
|
|
*
|
2018-02-01 10:00:02 -06:00
|
|
|
* Returned Value:
|
2020-10-28 17:02:56 +02:00
|
|
|
* 0 is returned on success; a negated errno value is returned on a
|
|
|
|
* failure.
|
2007-02-17 23:21:28 +00:00
|
|
|
*
|
2008-07-30 00:28:43 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2013-02-04 21:24:00 +00:00
|
|
|
int group_setupidlefiles(FAR struct task_tcb_s *tcb)
|
2007-02-17 23:21:28 +00:00
|
|
|
{
|
2013-02-04 21:24:00 +00:00
|
|
|
FAR struct task_group_s *group = tcb->cmn.group;
|
2019-02-11 12:09:26 -06:00
|
|
|
#ifdef CONFIG_DEV_CONSOLE
|
2007-02-17 23:21:28 +00:00
|
|
|
int fd;
|
2007-11-20 20:32:33 +00:00
|
|
|
#endif
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2019-02-11 12:09:26 -06:00
|
|
|
DEBUGASSERT(group != NULL);
|
2013-01-26 20:17:29 +00:00
|
|
|
|
|
|
|
/* Initialize file descriptors for the TCB */
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2013-01-26 20:17:29 +00:00
|
|
|
files_initlist(&group->tg_filelist);
|
2007-09-01 18:06:15 +00:00
|
|
|
|
2010-11-06 01:57:50 +00:00
|
|
|
/* Open stdin, dup to get stdout and stderr. This should always
|
|
|
|
* be the first file opened and, hence, should always get file
|
|
|
|
* descriptor 0.
|
|
|
|
*/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2019-02-11 12:09:26 -06:00
|
|
|
#ifdef CONFIG_DEV_CONSOLE
|
2018-09-15 10:49:41 -06:00
|
|
|
fd = nx_open("/dev/console", O_RDWR);
|
2007-02-17 23:21:28 +00:00
|
|
|
if (fd == 0)
|
|
|
|
{
|
2010-11-06 01:57:50 +00:00
|
|
|
/* Successfully opened /dev/console as stdin (fd == 0) */
|
|
|
|
|
2021-01-03 01:50:00 +08:00
|
|
|
nx_dup2(0, 1);
|
|
|
|
nx_dup2(0, 2);
|
2007-02-17 23:21:28 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-11-06 01:57:50 +00:00
|
|
|
/* We failed to open /dev/console OR for some reason, we opened
|
|
|
|
* it and got some file descriptor other than 0.
|
|
|
|
*/
|
2014-04-13 14:32:20 -06:00
|
|
|
|
2012-03-31 15:13:12 +00:00
|
|
|
if (fd > 0)
|
2010-11-06 01:57:50 +00:00
|
|
|
{
|
2016-06-20 11:59:15 -06:00
|
|
|
sinfo("Open /dev/console fd: %d\n", fd);
|
2020-10-28 17:02:56 +02:00
|
|
|
nx_close(fd);
|
2010-11-06 01:57:50 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-09-15 10:49:41 -06:00
|
|
|
serr("ERROR: Failed to open /dev/console: %d\n", fd);
|
2010-11-06 01:57:50 +00:00
|
|
|
}
|
2016-06-11 16:42:42 -06:00
|
|
|
|
2010-11-06 01:57:50 +00:00
|
|
|
return -ENFILE;
|
2007-02-17 23:21:28 +00:00
|
|
|
}
|
2012-07-14 19:30:31 +00:00
|
|
|
#endif
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2012-07-14 19:30:31 +00:00
|
|
|
/* Allocate file/socket streams for the TCB */
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2020-08-13 18:17:29 +08:00
|
|
|
#ifdef CONFIG_FILE_STREAM
|
2013-01-26 23:49:02 +00:00
|
|
|
return group_setupstreams(tcb);
|
2007-02-17 23:21:28 +00:00
|
|
|
#else
|
|
|
|
return OK;
|
2012-07-14 19:30:31 +00:00
|
|
|
#endif
|
2007-02-17 23:21:28 +00:00
|
|
|
}
|