Last active
August 29, 2015 14:14
-
-
Save arturmkrtchyan/2dec34776287afa08506 to your computer and use it in GitHub Desktop.
POSIX pthreads
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
#include <pthread.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
void *thread_function(void *arg) { | |
int i; | |
for ( i=0; i<20; i++ ) { | |
printf("Thread says hi!\n"); | |
sleep(1); | |
} | |
return NULL; | |
} | |
int main(void) { | |
pthread_t mythread; | |
if ( pthread_create( &mythread, NULL, thread_function, NULL) ) { | |
printf("error creating thread."); | |
abort(); | |
} | |
if ( pthread_join ( mythread, NULL ) ) { | |
printf("error joining thread."); | |
abort(); | |
} | |
exit(0); | |
} | |
// gcc thread1.c -o thread1 -lpthread | |
// ./thread1 |
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
#include <pthread.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <stdio.h> | |
int myglobal; | |
void *thread_function(void *arg) { | |
int i,j; | |
for ( i=0; i<20; i++ ) { | |
j=myglobal; | |
j=j+1; | |
printf("."); | |
fflush(stdout); | |
sleep(1); | |
myglobal=j; | |
} | |
return NULL; | |
} | |
int main(void) { | |
pthread_t mythread; | |
int i; | |
if ( pthread_create( &mythread, NULL, thread_function, NULL) ) { | |
printf("error creating thread."); | |
abort(); | |
} | |
for ( i=0; i<20; i++) { | |
myglobal=myglobal+1; | |
printf("o"); | |
fflush(stdout); | |
sleep(1); | |
} | |
if ( pthread_join ( mythread, NULL ) ) { | |
printf("error joining thread."); | |
abort(); | |
} | |
printf("\nmyglobal equals %d\n",myglobal); | |
exit(0); | |
} | |
// gcc thread2.c -o thread2 -lpthread | |
// ./thread2 |
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
#include <pthread.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <stdio.h> | |
int myglobal; | |
pthread_mutex_t mymutex=PTHREAD_MUTEX_INITIALIZER; | |
void *thread_function(void *arg) { | |
int i,j; | |
for ( i=0; i<20; i++ ) { | |
pthread_mutex_lock(&mymutex); | |
j=myglobal; | |
j=j+1; | |
printf("."); | |
fflush(stdout); | |
sleep(1); | |
myglobal=j; | |
pthread_mutex_unlock(&mymutex); | |
} | |
return NULL; | |
} | |
int main(void) { | |
pthread_t mythread; | |
int i; | |
if ( pthread_create( &mythread, NULL, thread_function, NULL) ) { | |
printf("error creating thread."); | |
abort(); | |
} | |
for ( i=0; i<20; i++) { | |
pthread_mutex_lock(&mymutex); | |
myglobal=myglobal+1; | |
pthread_mutex_unlock(&mymutex); | |
printf("o"); | |
fflush(stdout); | |
sleep(1); | |
} | |
if ( pthread_join ( mythread, NULL ) ) { | |
printf("error joining thread."); | |
abort(); | |
} | |
printf("\nmyglobal equals %d\n",myglobal); | |
exit(0); | |
} | |
// gcc thread3.c -o thread3 -lpthread | |
// ./thread3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment