Re: [PATCH 8/8] score: Use builtin for _Bitfield_Find_first_bit()

2016-06-09 Thread Gedare Bloom
looks good On Wed, Jun 8, 2016 at 9:58 AM, Sebastian Huber wrote: > In case the CPU architecture provides no specialized > _CPU_Bitfield_Find_first_bit() macro, then use the __builtin_clz() > builtin in case __GNUC__ is defined. > --- > cpukit/score/include/rtems/score/prioritybitmapimpl.h | 2 +

Re: Porting BSD Mailbox for RPi

2016-06-09 Thread Chris Johns
On 09/06/2016 19:20, Mudit Jain wrote: Is this resource structure appropriate for mbox ? Github Link I may have missed something but the sdhci.c source looks like a recent version rather than the FreeBSD version libbsd is based on. Wh

Flight Software Workshop CFP

2016-06-09 Thread Joel Sherrill
Hi, This is a great event and I encourage RTEMS users in the space domain to support it. Having trouble viewing this email? www.flightsoftware.org Flight Software Workshop *June 9th, 2016* *D

Re: questions about _Thread_queue_Enqueue_critical error path

2016-06-09 Thread Gedare Bloom
On Thu, Jun 9, 2016 at 9:17 AM, Sebastian Huber wrote: > On 08/06/16 19:32, Gedare Bloom wrote: >> >> In threadqenqueue.c:101 the error path will remove the timer and >> unblock the thread. >> >> 1) The condition for this error is that the wait flags did not match >> the expected value. This means

Re: [PATCH] confdefs.h: Do not hide network file systems

2016-06-09 Thread Gedare Bloom
OK On Thu, Jun 9, 2016 at 5:19 AM, Sebastian Huber wrote: > Do not hide network file systems if RTEMS_NETWORKING is not defined, > since they may be provided by the LibBSD. > --- > cpukit/sapi/include/confdefs.h | 64 > -- > 1 file changed, 30 insertions(

Re: questions about _Thread_queue_Enqueue_critical error path

2016-06-09 Thread Sebastian Huber
On 08/06/16 19:32, Gedare Bloom wrote: In threadqenqueue.c:101 the error path will remove the timer and unblock the thread. 1) The condition for this error is that the wait flags did not match the expected value. This means some other change occurred in the thread wait status. I don't even know

[PATCH] score: Comment _Thread_queue_Enqueue_critical()

2016-06-09 Thread Sebastian Huber
--- cpukit/score/src/threadqenqueue.c | 9 + 1 file changed, 9 insertions(+) diff --git a/cpukit/score/src/threadqenqueue.c b/cpukit/score/src/threadqenqueue.c index 1e95003..8bd1905 100644 --- a/cpukit/score/src/threadqenqueue.c +++ b/cpukit/score/src/threadqenqueue.c @@ -92,6 +92,15 @@

Porting BSD Mailbox for RPi

2016-06-09 Thread Mudit Jain
Hi all, I have procured a RPi Model B and was testing the ported driver on the same. This is where it hangs. -- *** LIBBSD SDHCI 01 TEST *** nexus0: bcm_dma0: on nexus0 sdhci_bcm0: on nexus0 ---

[PATCH] confdefs.h: Do not hide network file systems

2016-06-09 Thread Sebastian Huber
Do not hide network file systems if RTEMS_NETWORKING is not defined, since they may be provided by the LibBSD. --- cpukit/sapi/include/confdefs.h | 64 -- 1 file changed, 30 insertions(+), 34 deletions(-) diff --git a/cpukit/sapi/include/confdefs.h b/cpukit