[PATCH] rtems: Improve ordering in

2021-12-09 Thread Sebastian Huber
Move the data structure definitions closer to the directives which use them. --- cpukit/include/rtems/rtems/intr.h | 604 +++--- 1 file changed, 302 insertions(+), 302 deletions(-) diff --git a/cpukit/include/rtems/rtems/intr.h b/cpukit/include/rtems/rtems/intr.h index b9

Re: [rtems commit] untar: Make behavior similar to GNU or BSD tar

2021-12-09 Thread Christian MAUDERER
Hello Chris, Am 09.12.21 um 22:09 schrieb Chris Johns: On 9/12/21 6:47 pm, Christian MAUDERER wrote: Hello Chris, sorry that I haven't been clear enough. 1. The ticket #4552 that I created before sending the patch to the list and that was closed by the patch was for 5. 2. I asked as an answe

Re: [PATCH rtems-tools v2 0/4] Convert to C++ patches

2021-12-09 Thread Chris Johns
On 10/12/21 10:00 am, Ryan Long wrote: > For this round of changes, I made some revisions that were recommended > in ConfigFile.cc > > - deleted a library include > - changed a function call from sscanf to std::sscanf > - consolidated some error messages into a function OK to push. Thanks Chris

[PATCH v2 4/4] ObjdumpProcessor: Convert to C++

2021-12-09 Thread Ryan Long
--- tester/covoar/ObjdumpProcessor.cc | 27 +++ tester/covoar/ObjdumpProcessor.h | 6 +++--- 2 files changed, 18 insertions(+), 15 deletions(-) diff --git a/tester/covoar/ObjdumpProcessor.cc b/tester/covoar/ObjdumpProcessor.cc index c910046..8c0e8dc 100644 --- a/tester/

[PATCH v2 2/4] Target: Convert to C++

2021-12-09 Thread Ryan Long
--- tester/covoar/TargetBase.cc | 35 ++- tester/covoar/TargetBase.h | 18 +- tester/covoar/Target_aarch64.cc | 18 ++ tester/covoar/Target_aarch64.h | 6 +++--- tester/covoar/Target_arm.cc | 16 +--- tester

[PATCH v2 3/4] ConfigFile: Convert to C++

2021-12-09 Thread Ryan Long
--- tester/covoar/ConfigFile.cc | 82 ++--- tester/covoar/ConfigFile.h | 2 +- 2 files changed, 33 insertions(+), 51 deletions(-) diff --git a/tester/covoar/ConfigFile.cc b/tester/covoar/ConfigFile.cc index c16b64a..7109b2c 100644 --- a/tester/covoar/Conf

[PATCH rtems-tools v2 0/4] Convert to C++ patches

2021-12-09 Thread Ryan Long
Hi, For this round of changes, I made some revisions that were recommended in ConfigFile.cc - deleted a library include - changed a function call from sscanf to std::sscanf - consolidated some error messages into a function Thanks, Ryan Ryan Long (4): TargetFactory.cc: Convert to C++ Target

[PATCH v2 1/4] TargetFactory.cc: Convert to C++

2021-12-09 Thread Ryan Long
--- tester/covoar/TargetFactory.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tester/covoar/TargetFactory.cc b/tester/covoar/TargetFactory.cc index 57ba686..fa72f05 100644 --- a/tester/covoar/TargetFactory.cc +++ b/tester/covoar/TargetFactory.cc @@ -37,7 +37,7 @@ nam

Re: [rtems commit] untar: Make behavior similar to GNU or BSD tar

2021-12-09 Thread Chris Johns
On 9/12/21 6:47 pm, Christian MAUDERER wrote: > Hello Chris, > > sorry that I haven't been clear enough. > > 1. The ticket #4552 that I created before sending the patch to the list and > that > was closed by the patch was for 5. > > 2. I asked as an answer to Joels review and I understood him t

[PATCH] Avoid ISR_LOCK_MEMBER() since it confuses Doxygen

2021-12-09 Thread Sebastian Huber
If RTEMS_SMP is not defined, then Doxygen adds the comments intended for conditional the lock member to the next member. --- cpukit/include/rtems/rtems/partdata.h| 4 +++- cpukit/include/rtems/rtems/ratemondata.h | 4 +++- cpukit/include/rtems/score/percpu.h | 4 +++- cpukit/include/rtems