nuttx/sched
Gregory Nutt 717bb04cb7 Increase the number of real time signals. Two is not enough.
Refer to issue #8867 for details and rational.

Convert sigset_t to an array type so that more than 32 signals can be supported.

Why not use a uin64_t?
- Using a uin32_t is more flexible if we decide to increase the number of signals beyound 64.
- 64-bit accesses are not atomic, at least not on 32-bit ARMv7-M and similar
- Keeping the base type as uint32_t does not introduce additional overhead due to padding to achieve 64-bit alignment of uin64_t
- Some architectures still supported by NuttX do not support uin64_t
  types,

Increased the number of signals to 64. This matches Linux. This will support all xsignals defined by Linux and also 32 real time signals (also like Linux).

This is is a work in progress; a draft PR that you are encouraged to comment on.
2023-03-27 16:59:04 +03:00
..
addrenv sched/addrenv: Remove up_addrenv_restore 2023-02-08 02:51:23 +08:00
clock sched/clock_gettime:Remove output log 2023-03-25 01:43:01 +02:00
environ sched/env: add tg_envc in task_group_s to avoid some loops in code 2023-02-25 23:10:37 +02:00
group task/task_cancelpt: Kill the child if it is not in a cancel point 2023-02-17 22:57:36 +08:00
init Launch the initial task through task_spawn instead of nxtask_create 2023-01-25 23:34:52 +02:00
irq sched/irq: add spin_unlock_irqsave/irqrestore_wo_note 2023-01-02 22:29:01 +08:00
misc Increase the number of real time signals. Two is not enough. 2023-03-27 16:59:04 +03:00
module nuttx: Use MIN/MAX definitions from "sys/param.h" 2023-02-01 23:47:44 +08:00
mqueue sched/getpid: replace syscall getpid/tid/ppid() to kernel version 2023-02-02 10:33:01 +08:00
paging sched/paging: add FAR in paging worker 2023-03-26 09:23:50 -06:00
pthread Increase the number of real time signals. Two is not enough. 2023-03-27 16:59:04 +03:00
sched nuttx: fix indentation issue 2023-03-09 16:27:07 -03:00
semaphore sched/semaphore: increase sem count when holder task exit 2023-02-12 16:49:45 +08:00
signal Increase the number of real time signals. Two is not enough. 2023-03-27 16:59:04 +03:00
task Increase the number of real time signals. Two is not enough. 2023-03-27 16:59:04 +03:00
timer sched/getpid: replace syscall getpid/tid/ppid() to kernel version 2023-02-02 10:33:01 +08:00
tls sched/group: fix task info heap-use-after-free 2023-01-11 01:53:59 +08:00
wdog nuttx: Use MIN/MAX definitions from "sys/param.h" 2023-02-01 23:47:44 +08:00
wqueue sched/wqueue: Do as much work as possible in work_thread 2023-03-21 17:50:40 +02:00
Kconfig signal: Remove configurable assignment of signal numbers 2023-03-26 08:31:36 -06:00
Makefile group/group_addrenv: Move address environment from group -> tcb 2023-02-08 02:51:23 +08:00