Created
April 8, 2018 14:04
-
-
Save tarunjain07/87222a66ed86d24cbb46939f54f18fce to your computer and use it in GitHub Desktop.
This file contains hidden or 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
/* PThread Creation Quiz 3 */ | |
#include <stdio.h> | |
#include <pthread.h> | |
#define NUM_THREADS 4 | |
void *threadFunc(void *pArg) { /* thread main */ | |
int myNum = *((int*)pArg); | |
printf("Thread number %d\n", myNum); | |
return 0; | |
} | |
int main(void) { | |
int i; | |
int tNum[NUM_THREADS]; | |
pthread_t tid[NUM_THREADS]; | |
for(i = 0; i < NUM_THREADS; i++) { /* create/fork threads */ | |
tNum[i] = i; | |
pthread_create(&tid[i], NULL, threadFunc, &tNum[i]); | |
} | |
for(i = 0; i < NUM_THREADS; i++) { /* wait/join threads */ | |
pthread_join(tid[i], NULL); | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment