Re: Ticket 4503

2021-09-24 Thread zack leung
bump On Thu, 9 Sept 2021 at 02:17, zack leung wrote: > >Thanks! I guess i'm really unsure about how the pointer relates to the > amount of memory that you can use. I assume the Malloc keeps track of the > sections being used in the heap. Does this function Allocate 2 blocks since > the pointer i

Re: [PATCHv5] improve the format error reporting on i386

2021-09-24 Thread zack leung
bump On Thu, 23 Sept 2021 at 00:21, zack leung wrote: > I can send an example of the exception if you want. > > zack > > On Wed, 22 Sept 2021 at 18:01, Gedare Bloom wrote: > >> Joel, >> >> This looks good to me. I don't know if you can easily test it? >> >> Gedare >> >> On Wed, Sep 22, 2021 at

[PATCH v2] score: Add Doxygen group for mutexes

2021-09-24 Thread Sebastian Huber
--- v2: Add group description. cpukit/score/src/mutex.c | 16 +++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/cpukit/score/src/mutex.c b/cpukit/score/src/mutex.c index f7e35093b2..92bd614967 100644 --- a/cpukit/score/src/mutex.c +++ b/cpukit/score/src/mutex.c @@ -1

[PATCH] score: Add Thread_queue_Deadlock_status

2021-09-24 Thread Sebastian Huber
Replace the boolen return value with the new enum Thread_queue_Deadlock_status. This improves the code readability. Improve documentation. Shorten function names. --- cpukit/include/rtems/score/threadqimpl.h | 50 ++- cpukit/score/src/threadchangepriority.c | 4 +- cpukit/score

RE: [PATCH rtems-tools v2 5/7] TraceWriterQEMU.cc: Fix formatting

2021-09-24 Thread Ryan Long
Actually, I must've switched branches before building. -Original Message- From: devel On Behalf Of Ryan Long Sent: Friday, September 24, 2021 8:22 AM To: Chris Johns ; devel@rtems.org Subject: RE: [PATCH rtems-tools v2 5/7] TraceWriterQEMU.cc: Fix formatting Yeah, it still built just fin

RE: [PATCH rtems-tools v2 5/7] TraceWriterQEMU.cc: Fix formatting

2021-09-24 Thread Ryan Long
Yeah, it still built just fine. I was getting some differences in the coverage reports that I was going to investigate. Sorry about that. . -Original Message- From: Chris Johns Sent: Thursday, September 23, 2021 9:21 PM To: Ryan Long ; devel@rtems.org Subject: Re: [PATCH rtems-tools v2 5

RE: [PATCH rtems-tools v2 2/7] TraceReader: Convert to C++

2021-09-24 Thread Ryan Long
Whoops. Not sure what happened there. I had it in earlier. I'll change it to sizeof() and resubmit. -Original Message- From: Chris Johns Sent: Thursday, September 23, 2021 9:24 PM To: Ryan Long ; devel@rtems.org Subject: Re: [PATCH rtems-tools v2 2/7] TraceReader: Convert to C++ On 24/

[PATCH v2] eng: Add register block specification types

2021-09-24 Thread Sebastian Huber
A register block may be used to specify the interface of devices which use a linear address space. Register blocks consist of register block members specified by the ``definition`` attribute. Register block members are either instances of registers specified by the ``registers`` attribute or inst

[PATCH] glossary: Add OMIP

2021-09-24 Thread Sebastian Huber
--- c-user/glossary.rst | 6 ++ 1 file changed, 6 insertions(+) diff --git a/c-user/glossary.rst b/c-user/glossary.rst index 74f4ee1..f85c08c 100644 --- a/c-user/glossary.rst +++ b/c-user/glossary.rst @@ -604,6 +604,12 @@ Glossary variety of entities. Object-oriented systems shield

[PATCH] score: Add Doxygen group for mutexes

2021-09-24 Thread Sebastian Huber
--- cpukit/score/src/mutex.c | 12 +++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/cpukit/score/src/mutex.c b/cpukit/score/src/mutex.c index f7e35093b2..cad434bbd2 100644 --- a/cpukit/score/src/mutex.c +++ b/cpukit/score/src/mutex.c @@ -1,7 +1,7 @@ /** * @file * - *