-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLabTest2.c
58 lines (51 loc) · 1.17 KB
/
LabTest2.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#include<stdio.h>
#include <unistd.h>
#include <pthread.h>
char ar[10][100];
char str[100];
pthread_mutex_t lock;
int m;
char toUpper(char x){
if (x>=97 && x<=122){
x-=32;
}
return x;
}
void *updateString(void *arg){
pthread_mutex_lock(&lock);
int index = (int )arg;
for (int i = 0; i < strlen(ar[index]); ++i) {
ar[index][i] = toUpper(ar[index][i]);
}
pthread_mutex_unlock(&lock);
return NULL;
}
int main(){
pthread_t threads[100];
printf("Enter A string\n");
gets(str);
printf("Enter n and m:\n");
int n;
scanf("%d",&n);
scanf("%d",&m);
char *token = strtok(str, " ");
int i=0;
while (token!=NULL){
strcpy(ar[i++],token);
token = strtok(NULL, " ");
}
for (i = 0; i < n; ++i) {
if (pthread_mutex_init(&lock, NULL) != 0) {
printf("\n mutex init has failed\n");
return 1;
}
pthread_create(&threads[i%m],NULL,updateString,(void *)(i));
}
for (int j = 0; j < m; ++j) {
pthread_join(threads[j],NULL);
}
pthread_mutex_destroy(&lock);
for (int j = 0; j < n; ++j) {
printf("%s ",ar[j]);
}
}