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