incubator-nuttx/sched/mqueue
hujun5 1c5a0bf6cc irq: add [enter|leave]_critical_section_nonirq
Configuring NuttX and compile:
$ ./tools/configure.sh -l qemu-armv8a:nsh_smp
$ make
Running with qemu
$ qemu-system-aarch64 -cpu cortex-a53 -smp 4 -nographic \
   -machine virt,virtualization=on,gic-version=3 \
   -net none -chardev stdio,id=con,mux=on -serial chardev:con \
   -mon chardev=con,mode=readline -kernel ./nuttx

reason:
In some non-irq scenarios, we can simplify
the implementation of critical sections to improve performance.

Signed-off-by: hujun5 <hujun5@xiaomi.com>
2024-09-08 17:50:51 +08:00
..
CMakeLists.txt sched/mqueue: merge System-V message queue initialize into posix 2024-03-26 17:32:11 +01:00
Make.defs sched/mqueue: merge System-V message queue initialize into posix 2024-03-26 17:32:11 +01:00
mq_getattr.c
mq_initialize.c sched/mqueue: move message queue buffer to bss 2024-06-04 14:26:55 +08:00
mq_msgfree.c
mq_msgqalloc.c
mq_msgqfree.c
mq_notify.c
mq_rcvinternal.c sched/mqueue/mq_receive: fix the wrong return value when message queue is not opened for reading. 2023-08-03 03:10:56 -07:00
mq_receive.c irq: add [enter|leave]_critical_section_nonirq 2024-09-08 17:50:51 +08:00
mq_recover.c
mq_send.c sched/mqueue/mq_send: fix the wrong return value in mq_send function. And add the condition if message priority equal to MQ_PRIO_MAX. 2023-08-03 03:10:56 -07:00
mq_setattr.c
mq_sndinternal.c nuttx: fix multiple 'FAR', 'CODE' and style issues 2024-08-25 19:22:15 +08:00
mq_timedreceive.c irq: add [enter|leave]_critical_section_nonirq 2024-09-08 17:50:51 +08:00
mq_timedsend.c irq: add [enter|leave]_critical_section_nonirq 2024-09-08 17:50:51 +08:00
mq_waitirq.c
mqueue.h
msg.h sched/mqueue: merge System-V message queue initialize into posix 2024-03-26 17:32:11 +01:00
msgctl.c
msgget.c
msginternal.c sched/mqueue: correct list parameter 2024-04-11 22:19:34 +08:00
msgrcv.c
msgsnd.c