Move IPC stuff from the libc side, inside the sys folder.

This commit is contained in:
Enrico Fraccaroli
2023-05-08 12:53:17 +02:00
parent e19354a9ee
commit 19e8ad309f
16 changed files with 45 additions and 43 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
//test
#include "ipc/sem.h"
#include "sys/sem.h"
#include "stdio.h"
#include "ipc/ipc.h"
#include "sys/ipc.h"
#include "sys/errno.h"
#include "sys/wait.h"
#include "stdlib.h"
+5 -5
View File
@@ -1,10 +1,10 @@
//test
#include "ipc/sem.h"
#include "stdio.h"
#include "ipc/ipc.h"
#include "sys/errno.h"
#include "stdlib.h"
#include "sys/unistd.h"
#include "sys/errno.h"
#include "sys/sem.h"
#include "sys/ipc.h"
#include "stdlib.h"
#include "stdio.h"
/*
Testing IPC_NOWAIT flag.
+5 -5
View File
@@ -1,10 +1,10 @@
//test
#include "ipc/sem.h"
#include "stdio.h"
#include "ipc/ipc.h"
#include "sys/errno.h"
#include "stdlib.h"
#include "sys/unistd.h"
#include "sys/errno.h"
#include "sys/sem.h"
#include "sys/ipc.h"
#include "stdlib.h"
#include "stdio.h"
/*
Testing Semaphores.