This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Includes */ | |
#include <unistd.h> /* Symbolic Constants */ | |
#include <sys/types.h> /* Primitive System Data Types */ | |
#include <errno.h> /* Errors */ | |
#include <stdio.h> /* Input/Output */ | |
#include <stdlib.h> /* General Utilities */ | |
#include <pthread.h> /* POSIX Threads */ | |
#include <string.h> /* String handling */ | |
/* prototype for thread routine */ |