Skip to content

Instantly share code, notes, and snippets.

@eLtronicsVilla
Created July 16, 2019 02:20
Show Gist options
  • Save eLtronicsVilla/b14cb4297c4aa88f825c07ca9775a563 to your computer and use it in GitHub Desktop.
Save eLtronicsVilla/b14cb4297c4aa88f825c07ca9775a563 to your computer and use it in GitHub Desktop.
Mutex implementation using pthread library in cpp
#include<stdio.h>
#include<string.h>
#include<pthread.h>
#include<stdlib.h>
#include<unistd.h>
pthread_t tid[2];
int counter;
pthread_mutex_t lock;
void* trythis(void *arg)
{
pthread_mutex_lock(&lock);
unsigned long i = 0;
counter += 1;
printf("\n Job %d has started\n", counter);
for(i=0; i<(0xFFFFFFFF);i++);
printf("\n Job %d has finished\n", counter);
pthread_mutex_unlock(&lock);
return NULL;
}
int main(void)
{
int i = 0;
int error;
if (pthread_mutex_init(&lock, NULL) != 0)
{
printf("\n mutex initialization has failed\n");
return 1;
}
while(i < 2)
{
err = pthread_create(&(tid[i]), NULL, &trythis, NULL);
if (error != 0)
printf("\nThread cannot be created :[%s]", strerror(error));
i++;
}
pthread_join(tid[0], NULL);
pthread_join(tid[1], NULL);
pthread_mutex_destroy(&lock);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment