Re: [PATCH] fix type and logic issue when libbsd checking is enforced by the user code

2023-07-22 Thread Karel Gardas
On 7/22/23 17:26, Joel Sherrill wrote: I'm not that familiar with this logic but your change looks right to me. ACK. Please.change the title from type to typo. It looks like a typo in your commitmto fix a typo. Lol No, not at all. As a big fan of statically typed languages I think this is

Re: [PATCH] fix type and logic issue when libbsd checking is enforced by the user code

2023-07-22 Thread Joel Sherrill
I'm not that familiar with this logic but your change looks right to me. Please.change the title from type to typo. It looks like a typo in your commitmto fix a typo. Lol I'm ok with you pushing this. --joel On Sat, Jul 22, 2023, 10:04 AM Karel Gardas wrote: > Fixes #4930. > --- > rtems_bs

[PATCH] fix type and logic issue when libbsd checking is enforced by the user code

2023-07-22 Thread Karel Gardas
Fixes #4930. --- rtems_bsd.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rtems_bsd.py b/rtems_bsd.py index 7fbe66f..8faae10 100644 --- a/rtems_bsd.py +++ b/rtems_bsd.py @@ -71,8 +71,8 @@ def bsp_configure(conf, arch_bsp, mandatory=True): 'config

[PATCH] validation: Task entry return for idle threads

2023-07-22 Thread Sebastian Huber
Update #3716. --- testsuites/validation/tc-userext.c | 72 +- testsuites/validation/ts-userext.c | 2 + 2 files changed, 73 insertions(+), 1 deletion(-) diff --git a/testsuites/validation/tc-userext.c b/testsuites/validation/tc-userext.c index bb5e064974..192be30669

[PATCH] c-user: Link task entry and global construction

2023-07-22 Thread Sebastian Huber
--- c-user/glossary.rst | 13 + c-user/initialization/operations.rst | 25 +++-- c-user/rtems_data_types.rst | 2 +- c-user/task/directives.rst | 6 +++--- 4 files changed, 32 insertions(+), 14 deletions(-) diff --git a/c-user/