gpt4 book ai didi

c - Pthread代码运行时中途崩溃

转载 作者:太空宇宙 更新时间:2023-11-04 06:31:22 25 4
gpt4 key购买 nike

一直在做这个作业并使用pthreadC语言中模拟多线程。该代码使用替代方法找到最大值。它编译得很好,运行也很好,但中途崩溃了。我正在使用 windows 7 64 位。我认为这很重要。

#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>

long n,thread_count;
long* w_array;
long* x_array;

void* Initiate(void* index);//initializes control array W
void* Compare(void* pair);//compares each possible pair of input array x. not finished!

struct Pairs {
long i,j;
};

int main(int argc, char **argv) {
pthread_t* thread_handles;
long thread;
n = strtol(argv[1],NULL, 10);
thread_handles = malloc(n*sizeof(pthread_t));

w_array = malloc(n*sizeof(long));
x_array = malloc(n*sizeof(long));
/*argv[1] is number of inputs,then comes the array*/

printf("Number of input values \t %ld \n", n);
printf("Input values \t\t X = ");

for(thread = 0; (thread<n);thread++){
x_array[thread] = strtol(argv[thread+2], NULL, 10);
printf(" %ld ", strtol(argv[thread+2], NULL, 10));
}
printf("\nAfter Initialization \t W = ");
for (thread = 0;(thread < n);thread++){
pthread_create(&thread_handles[thread], NULL, Initiate, (void*)thread);
}

for(thread = 0; (thread < n);thread++){
pthread_join(thread_handles[thread],NULL);
}

free(thread_handles);

/* Problem comes after this section */
long thread_cmp_count = n*(n-1)/2;
long t;
struct Pairs *pair;
thread_handles = malloc(thread_cmp_count*sizeof(pthread_t));
thread_cmp_count -= 1;
for(thread = 0;(thread < n); thread++){
for(t = thread+1; t < n; t++){
pair->i = thread;
pair->j = t;
pthread_create(&thread_handles[thread_cmp_count--], NULL, Compare, (void*) pair);
}
}

for(thread= 0;(thread<thread_cmp_count); thread++){
pthread_join(thread_handles[thread], NULL);
}

free(thread_handles);


return 0;

}

这里是原型(prototype)的实现

    void* Initiate(void* index){
long my_index = (long)index;
w_array[my_index] = 1;
printf(" %ld ", w_array[my_index]);
return NULL;
}

void* Compare(void* pair){

struct Pairs *my_pair = (struct Pairs*)pair;
long int i_index = (long int) my_pair->i;
long int j_index = (long int) my_pair->j;
printf("\nThread %ld, %ld", i_index, j_index);
return NULL;
}


Here is snapshot of the output

C:\Users\Jos\Desktop\c compile>gcc -g -o max max.c -lpthread
max.c: In function 'main':
max.c:49:59: warning: cast to pointer from integer of different size [-Wint-to-p
ointer-cast]
pthread_create(&thread_handles[thread], NULL, Initiate, (void*)thread);
^
max.c: In function 'Initiate':
max.c:84:18: warning: cast from pointer to integer of different size [-Wpointer-
to-int-cast]
long my_index = (long)index;

^

C:\Users\Jos\Desktop\c compile>max 4 1 2 3 4
Number of input values 4
Input values X = 1 2 3 4
After Initialization W = 1 1 1 1

最佳答案

您也需要在下面的代码段中为 struct Pairs *pair; 分配。

    struct Pairs *pair;
thread_handles = malloc(thread_cmp_count*sizeof(pthread_t));
thread_cmp_count -= 1;
for(thread = 0;(thread < n); thread++){
for(t = thread+1; t < n; t++){
pair->i = thread;
pair->j = t;
pthread_create(&thread_handles[thread_cmp_count--], NULL, Compare, (void*) pair);
}
}

使用您的代码,它会取消引用未初始化的指针,因此您会崩溃。

关于c - Pthread代码运行时中途崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20145685/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com