RE: Arm Kinetis: set_errno in nx_start with CONFIG_TLS_ALIGNED not set

2020-05-26 Thread Schock, Johannes - NIVUS GmbH
> From: Gregory Nutt [mailto:spudan...@gmail.com] > I just configured a new computer and I am having problems with MSYS2.  I > can't even create the "symbolic" links needed at start up.  I am not > sure why.  Probably some priveleges issues. I activate Windows 10 Developer Mode, and create an

Re: FAR for pointer to pointer

2020-05-26 Thread Takashi Yamamoto
On Tue, May 26, 2020 at 8:05 PM Alan Carvalho de Assis wrote: > > man strtoul my question was about FAR. strtoul is just an example. > > On 5/25/20, Takashi Yamamoto wrote: > > hi, > > > > our strtoul prototype is: > > > > unsigned long strtoul(FAR const char *nptr, FAR char **endptr, int

Showing all registered IRQs in /proc/irqs interface

2020-05-26 Thread Brennan Ashton
I was trying to debug something today where I was dynamically registering some IRQs and I was trying to figure out what was wrong because they did not show up in /prov/irqs. This seems to be the expected behavior, but I am not sure why we would not want to show all the registered IRQs just

Re: Arm Kinetis: set_errno in nx_start with CONFIG_TLS_ALIGNED not set

2020-05-26 Thread Gregory Nutt
I'm currently updating MSYS2, and will then repeat the build. Then I'll test on another computer. And when it's happening there as well, I'll try to narrow down the reason. I just configured a new computer and I am having problems with MSYS2.  I can't even create the "symbolic" links

RE: Arm Kinetis: set_errno in nx_start with CONFIG_TLS_ALIGNED not set

2020-05-26 Thread Schock, Johannes - NIVUS GmbH
> -Original Message- > From: Gregory Nutt [mailto:spudan...@gmail.com] > Sent: Tuesday, May 26, 2020 4:20 PM > To: dev@nuttx.apache.org > Subject: Re: Arm Kinetis: set_errno in nx_start with CONFIG_TLS_ALIGNED > not set > > > Today I had time to return to nuttx and rebased to master. > >

RE: Arm Kinetis: set_errno in nx_start with CONFIG_TLS_ALIGNED not set

2020-05-26 Thread Schock, Johannes - NIVUS GmbH
Thanks a lot for the fixes. Yes I know that I won't have stdio in this configuration. I followed the README of stm32f429i-disco concerning CDC/ACM console, and it's for testing/playing anyway. Today I had time to return to nuttx and rebased to master. But after doing a distclean and

Re: FAR for pointer to pointer

2020-05-26 Thread Alan Carvalho de Assis
man strtoul On 5/25/20, Takashi Yamamoto wrote: > hi, > > our strtoul prototype is: > > unsigned long strtoul(FAR const char *nptr, FAR char **endptr, int > base); > > why shouldn't they be like, say, "FAR char * FAR * endptr"? >