Added structure plans

This commit is contained in:
2022-10-12 22:59:06 -05:00
parent 20039ede09
commit 8339af50c4
4 changed files with 40 additions and 7 deletions
+2 -2
View File
@@ -2,12 +2,12 @@
#define SHARED_H
#include <semaphore.h>
typedef struct sharedMem
typedef struct SharedStruct
{
int buffer[10];
sem_t semConsumer;
sem_t semProducer;
} sharedMem;
} SharedStruct;
#endif