2012-03-29 02:30:10 +08:00
|
|
|
#include <pthread.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
const int N = 1000;
|
|
|
|
void *x[N];
|
|
|
|
|
2012-03-29 05:03:34 +08:00
|
|
|
void *Thread1(void *unused) {
|
2012-03-29 02:30:10 +08:00
|
|
|
for (int i = 0; i < N; i++) {
|
2014-02-27 04:33:22 +08:00
|
|
|
fprintf(stderr, "%s %d\n", __func__, i);
|
2012-03-29 02:30:10 +08:00
|
|
|
free(x[i]);
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-03-29 05:03:34 +08:00
|
|
|
void *Thread2(void *unused) {
|
2012-03-29 02:30:10 +08:00
|
|
|
for (int i = 0; i < N; i++) {
|
2014-02-27 04:33:22 +08:00
|
|
|
fprintf(stderr, "%s %d\n", __func__, i);
|
2012-03-29 02:30:10 +08:00
|
|
|
free(x[i]);
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
for (int i = 0; i < N; i++)
|
|
|
|
x[i] = malloc(128);
|
|
|
|
pthread_t t[2];
|
|
|
|
pthread_create(&t[0], 0, Thread1, 0);
|
|
|
|
pthread_create(&t[1], 0, Thread2, 0);
|
|
|
|
pthread_join(t[0], 0);
|
|
|
|
pthread_join(t[1], 0);
|
|
|
|
}
|