Re: Creating posix shm interface

2022-04-06 Thread Xiang Xiao
On Thu, Apr 7, 2022 at 1:51 PM Jukka Laitinen wrote: > > On 7.4.2022 8.18, Xiang Xiao wrote: > > On Wed, Apr 6, 2022 at 8:20 PM Jukka Laitinen > wrote: > > > >> Hi! > >> > >> Just started crafting the posix shm driver, with the following: > >> > >> - Started with "driver" approach (i.e. not moun

Re: Creating posix shm interface

2022-04-06 Thread Jukka Laitinen
On 7.4.2022 8.18, Xiang Xiao wrote: On Wed, Apr 6, 2022 at 8:20 PM Jukka Laitinen wrote: Hi! Just started crafting the posix shm driver, with the following: - Started with "driver" approach (i.e. not mountable fs), similar to mqueue. - Added shm_open and shm_unlink to syscalls (similarly

Re: Creating posix shm interface

2022-04-06 Thread Xiang Xiao
On Wed, Apr 6, 2022 at 8:20 PM Jukka Laitinen wrote: > Hi! > > Just started crafting the posix shm driver, with the following: > > - Started with "driver" approach (i.e. not mountable fs), similar to > mqueue. > > - Added shm_open and shm_unlink to syscalls (similarly as mq_open). > shm_unlink wo

Re: Websockets with NuttX

2022-04-06 Thread alvin.pe...@gmail.com
Hi Petro,I use wslay library in my project,and works  fine. 回复的原邮件 发件人 mailto:petro.karashche...@gmail.com";>Petro Karashchenko

Re: [VOTE] Apache NuttX 10.3.0 (incubating) RC0 release

2022-04-06 Thread Tomek CEDRO
If that counts I can configure and build on FreeBSD now so +1 from me :-) I need to add some config and compiler options for different architectures but the base is already here, thank you! :-) -- CeDeROM, SQ7MHZ, http://www.tomek.cedro.info

Re: [VOTE] Apache NuttX 10.3.0 (incubating) RC0 release

2022-04-06 Thread Alan Carvalho de Assis
Errata, I used the xtensa toolchain to read the risc-v size, it should be: $ riscv64-unknown-elf-size nuttx textdata bss dec hex filename 85076 180 142198 227454 3787e nuttx But as you can see the size from other arch reported the same values. BR, Alan On 4/6/22, A

Re: [VOTE] Apache NuttX 10.3.0 (incubating) RC0 release

2022-04-06 Thread Alan Carvalho de Assis
Hi Alin, +1 Please find attached the size information for ESP32, ESP32C3 and STM32F4: $ xtensa-esp32-elf-gcc -v gcc version 8.2.0 (crosstool-NG esp-2020r2) $ ./tools/configure.sh esp32-devkitc:nsh $ xtensa-esp32-elf-size nuttx textdata bss dec hex filename 74671 228

Re: [VOTE] Apache NuttX 10.3.0 (incubating) RC0 release

2022-04-06 Thread Xiang Xiao
On Thu, Apr 7, 2022 at 12:12 AM Alin Jerpelea wrote: > Hi Xiang, > > DISCLAIMER-WIP was removed last week from master and release branch and > should not be present anymore > Yes, I mean checkrelease.sh found the change correctly: Checking apache-nuttx-10.3.0-RC0-incubating.tar.gz for required f

Re: [VOTE] Apache NuttX 10.3.0 (incubating) RC0 release

2022-04-06 Thread Alin Jerpelea
Hi Xiang, DISCLAIMER-WIP was removed last week from master and release branch and should not be present anymore Best regards Alin On Wed, 6 Apr 2022, 18:09 Xiang Xiao, wrote: > +1 to release > check with ./tools/checkrelease.sh --release nuttx-10.3.0-RC0 and report > DISCLAIMER-WIP.not pre

Re: [VOTE] Apache NuttX 10.3.0 (incubating) RC0 release

2022-04-06 Thread Xiang Xiao
+1 to release check with ./tools/checkrelease.sh --release nuttx-10.3.0-RC0 and report DISCLAIMER-WIP.not present correctly. On Fri, Apr 1, 2022 at 9:55 PM Nathan Hartman wrote: > On Wed, Mar 30, 2022 at 12:50 PM Alin Jerpelea wrote: > > > > Hello all, > > > > > > Apache NuttX (Incubating) 10.3

Re: Creating posix shm interface

2022-04-06 Thread Jukka Laitinen
Hi! Just started crafting the posix shm driver, with the following: - Started with "driver" approach (i.e. not mountable fs), similar to mqueue. - Added shm_open and shm_unlink to syscalls (similarly as mq_open). shm_unlink would *maybe* also work directly through vfs, but at least shm_open

Re: Websockets with NuttX

2022-04-06 Thread Xiang Xiao
Look like libwebsockets is more mature and still actively maintained. On Wed, Apr 6, 2022 at 1:47 PM Michael Jung wrote: > Hello Alan and Petro, > > I have used libwebsockets on NuttX a couple of years ago. This is an > awesome piece of Software and meanwhile it is MIT licensed. I an planing to