Semids, Semun and various define added to sem.h, created a test for checking the actual presence of the syscalls

This commit is contained in:
Aldegheri Alessandro
2023-03-19 10:18:26 +01:00
parent 188f42e531
commit 25c1c2c6fb
4 changed files with 55 additions and 3 deletions
+1
View File
@@ -85,6 +85,7 @@ set(TESTS
t_kill.c
t_itimer.c
t_gid.c
t_semget.c
)
foreach(TEST ${TESTS})
+8
View File
@@ -0,0 +1,8 @@
//testtt
#include <ipc/sem.h>
int main()
{
long i = semget(0,0,0);
return 0;
}