簡體   English   中英

Pthread代碼在運行時中途崩潰

[英]Pthread code crashes midway when running

正在執行此分配並使用pthread模擬C語言中的multithreading 該代碼使用替代方法找到最大值。 而且它可以很好地編譯並運行,但在中途崩潰。 我正在使用windows 7 64 bit 我認為這很重要。

#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;

}

這是原型的實現

    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; 在下面的代碼段中也是如此。

    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);
        }
    }

使用您的代碼,它會取消引用未初始化的指針,因此會導致崩潰。

可能是在最下面的部分中,您沒有為struct Pairs *pair;分配內存struct Pairs *pair;

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM