Re: [PATCH 5/8] score: Add self-contained mutex implementation

2015-07-25 Thread Sebastian Huber
- Gedare Bloom schrieb: > What, if any, guidance do we need to give to users about these new > implementations? We should mention that they are used for the Newlib internal locks. I would make the available to the users via the C11 thread library: http://en.cppreference.com/w/c/thread He

Re: [PATCH 5/8] score: Add self-contained mutex implementation

2015-07-24 Thread Gedare Bloom
What, if any, guidance do we need to give to users about these new implementations? Or are they (supposedly) hidden from the API so nothing must be said? We will need developer documentation. Gedare On Thu, Jul 23, 2015 at 8:54 AM, Sebastian Huber wrote: > This mutex implementation uses a threa

[PATCH 5/8] score: Add self-contained mutex implementation

2015-07-23 Thread Sebastian Huber
This mutex implementation uses a thread priority queue with a simple priority inheritance mechanism (similar to the object based mutexes) without support for timeouts. The storage space must be supplied by the user (16 bytes on 32-bit targets). --- cpukit/configure.ac|