nuttx/sched
YAMAMOTO Takashi 316f6aea71 group_setupidlefiles: fall back to /dev/null if /dev/console is disabled
Tested with a modified nsh on esp32-devkitc.
```
 int main(int argc, FAR char *argv[])
  {
  +  int fd = open("/dev/null", O_RDWR);
  +  _info("hey _info %d\n", fd);
  +  write(1, "hey stdout\n", 11);
  +  write(2, "hey stderr\n", 11);
```
2022-11-09 17:06:38 +08:00
..
clock clock: adjust clock function to support tick 2022-11-01 21:54:20 +08:00
environ
group group_setupidlefiles: fall back to /dev/null if /dev/console is disabled 2022-11-09 17:06:38 +08:00
init sched/spawn: Support task_spawnattr_[set|get]stackaddr 2022-10-31 12:46:58 +09:00
irq
module
mqueue sched: remove sched_continue, merge code 2022-11-04 08:51:02 +01:00
paging nuttx/sched: use pid to check idle task 2022-10-31 17:53:08 +09:00
pthread sched: Remove the unnecessary (FAR sem_t *) cast 2022-10-29 21:12:40 +02:00
sched sched: remove sched_continue, merge code 2022-11-04 08:51:02 +01:00
semaphore sched: remove sched_continue, merge code 2022-11-04 08:51:02 +01:00
signal sched: remove sched_continue, merge code 2022-11-04 08:51:02 +01:00
task sched/spawn: Rename task_spawnattr_[get|set]stack[size|addr] to posix_spawnattr_[get|set]stack[size|addr] 2022-11-01 09:51:18 +09:00
timer sched/posix/timer: handle invaild timerid correctly 2022-10-31 19:59:29 -03:00
tls
wdog
wqueue use SEM_INITIALIZER inside of NXSEM_INITIALIZER 2022-10-22 14:50:48 +08:00
Kconfig sched: catch task memory leak 2022-10-29 11:35:27 +08:00
Makefile tools: replace INCDIR to Makefile variable 2022-11-03 19:59:55 +08:00