async cancel

This commit is contained in:
2024-03-14 22:34:03 +05:30
commit 0b4e007694
41 changed files with 6049 additions and 0 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*/