deferred cancellation

This commit is contained in:
2024-03-15 09:21:53 +05:30
parent 21e905da75
commit c56eeb7eca
53 changed files with 5378 additions and 5 deletions

View File

@@ -0,0 +1,14 @@
#ifndef __MASTER_SLAVE1_H
#define __MASTER_SLAVE1_H
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <unistd.h>
#include <pthread.h>
void*
write_into_file(void* arg);
#endif /* __MASTER_SLAVE1_H*/