Pseudocode for semctl, semget and semop functions

This commit is contained in:
Aldegheri Alessandro
2023-03-29 17:27:38 +02:00
parent 25c1c2c6fb
commit cd74fd521c
2 changed files with 75 additions and 5 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
//testtt
//test
#include <ipc/sem.h>
int main()
{
long i = semget(0,0,0);
long i = semget(0,0,0); //checking if the syscalls are already linked
return 0;
}