[PATCH] spsysinit01: Fix sem_open() call

Sebastian Huber sebastian.huber at embedded-brains.de
Mon Mar 13 14:49:26 UTC 2023


The O_CREAT flag requires a mode and initial value as third and fourth
argument.

Close #4878.
---
 testsuites/sptests/spsysinit01/init.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/testsuites/sptests/spsysinit01/init.c b/testsuites/sptests/spsysinit01/init.c
index 1f7c1ada25..2438c91559 100644
--- a/testsuites/sptests/spsysinit01/init.c
+++ b/testsuites/sptests/spsysinit01/init.c
@@ -908,7 +908,7 @@ static void do_posix_sem_open(void)
   sem_t *sem;
   int rv;
 
-  sem = sem_open("sem", O_CREAT | O_RDWR, S_IRWXU | S_IRWXG | S_IRWXO);
+  sem = sem_open("sem", O_CREAT | O_RDWR, S_IRWXU | S_IRWXG | S_IRWXO, 0);
   rtems_test_assert(sem != SEM_FAILED);
 
   rv = sem_close(sem);
-- 
2.35.3



More information about the devel mailing list