【问题标题】:program intermittently stuck with main reporting a different thread id as opposed to the thread itself程序间歇性地卡在 main 报告不同的线程 id 而不是线程本身
【发布时间】:2018-06-04 17:26:39
【问题描述】:

我想弄清楚多线程是如何工作的,这是我的代码:

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <string.h>
#include <pthread.h>

static pthread_cond_t threadDied = PTHREAD_COND_INITIALIZER ; // cond var initialization
static pthread_mutex_t threadMutex = PTHREAD_MUTEX_INITIALIZER ; // mutex initialization
// this mutex will protect all of the below global vars

static int totThreads = 0 ; // total number of threads created
static int numLive = 0 ;   // Total no. of threads still alive .. or terminated but not joined
static int numUnjoined = 0 ; // no. of threads that have not yet been joined

enum tstate { // enumeration of thread states
    TS_ALIVE, // thread is alive
    TS_TERMINATED, // thread terminated, not yet joined
    TS_JOINED  // thread terminated and joined
};

static struct {  // info about each thread
    pthread_t tid ; // thread ID
    enum tstate state; // Thread state as per the above enum
    int sleepTime ;  // no. of seconds to live before terminating
} *thread ; // name of the struct .. well a pointer

static void *threadFunc (void *arg) { // default start function for each thread
    int idx = *(int *)arg  ; // since arg is of type void , we typecast it to * of type int and deref it
    int s ; // for ret val

    sleep(thread[idx].sleepTime) ;  // pretending as though thread is doing some work :/

    s = pthread_mutex_lock(&threadMutex);
    if (s!=0) {
        printf("whoops, couldn't acquire mutex\n") ;
        fflush(stdout);
        exit (-1) ;
    }

    numUnjoined ++ ;
    thread[idx].state = TS_TERMINATED ;

    s = pthread_mutex_unlock(&threadMutex) ;
    if ( s!=0 ) {
        printf("whoops, couldn't release mutex\n") ;
        fflush(stdout);
        exit (-2) ;
    }

    s = pthread_cond_signal(&threadDied) ; // signalling any listening thread to wake up !!
    if (s != 0) {
        printf("whoops, couldn't signal the main thread to reap\n");
        fflush(stdout);
        exit (-3) ;
    }
    printf("Thread %d has worked hard and is now terminating\n", idx);
    fflush(stdout);

    return NULL ;
}

int main(int argc, char *argv[]) {
    int s, idx ;

    if (argc < 2 || strcmp(argv[1], "--help") == 0) {
        printf("Usage : %s nsecs...\n", argv[0]);
        fflush(stdout);
        exit(-4) ;
    }
    thread = calloc(argc -1, sizeof(*thread) );
    if (thread == NULL) {
        printf("whoops, couldn't allocate memory of size %lu\n", (argc -1) * sizeof(*thread) );
        fflush(stdout);
        exit(-5);
    }

    // Let's create all the threads now !!

    for (idx =0 ; idx < argc -1 ; idx++ ) {
        thread[idx].sleepTime = atoi(argv[idx + 1 ]) ; // thread sleeps for the duration entered in the cmd line
        thread[idx].state = TS_ALIVE ;
        s = pthread_create(&thread[idx].tid, NULL, threadFunc, &idx);
        printf("Main created thread %d with tid : %lu \n", ( * (int *)&idx ), (unsigned long)thread[idx].tid);
        fflush(stdout);
        if (s != 0 ){
            printf("whoops couldn't create thread %lu\n",(unsigned long) (&thread[idx].tid) );
            fflush(stdout);
            exit(-6) ;
        }
        //sleep(1); // << -- if I don't add this sleep, then it just deadlocks
    }

    totThreads = argc -1 ;
    numLive = totThreads ;

    // Join terminated threads

    while (numLive > 0 ) {
        s = pthread_mutex_lock(&threadMutex) ;
        if (s!=0){
            printf("whoops, couldn't lock mutex for joining\n") ;
            fflush(stdout);
            exit(-7) ;
        }
        while (numUnjoined == 0) {
            s = pthread_cond_wait(&threadDied, &threadMutex) ;
            if (s!=0) {
                printf("whoops, couldn't wait for thread join\n") ;
                fflush(stdout);
                exit(-8) ;
            }
        }

        for (idx = 0 ; idx < totThreads ; idx++ ) {
            if (thread[idx].state == TS_TERMINATED) {
                s = pthread_join(thread[idx].tid, NULL) ;
                if (s!=0) {
                    printf("Failed thread join\n");
                    fflush(stdout);
                    exit(-9) ;
                }

                thread[idx].state = TS_JOINED ;
                numLive-- ;
                numUnjoined-- ;
                printf("Reaped thread %d (numLive=%d)\n", idx, numLive);
                fflush(stdout);
            }
        }

        s = pthread_mutex_unlock(&threadMutex) ;
        if (s!=0){
            printf("whopps, couldn't unlock mutex after joining\n");
            fflush(stdout);
            exit(-10) ;
        }
    }
    exit(EXIT_SUCCESS);

}

对于 1 的线程数,此代码有时有效,有时它只是挂起 :(

工作:

#./thread_multijoin 1

主创建线程 0,tid 为:139835063281408

线程 0 已经努力工作,现在正在终止

线程 0 (numLive=0)

挂起:

#./thread_multijoin 1

主创建线程 0,tid 为:140301613573888

线程 1 已经努力工作,现在正在终止

^C

注意这里 Main 说“线程 0 已创建”;而线程本身说“线程 1”......为什么不匹配??

当我有多个线程时它肯定会卡住:

#./thread_multijoin 1 2 2 1

主创建线程 0,tid 为:140259455936256

主创建线程 1,tid 为:140259447543552

主创建线程 2,tid 为:140259439150848

主创建线程 3,tid 为:140259430758144

线程 4 已经努力工作,现在正在终止

线程 0 已经努力工作,现在正在终止

线程 0 (numLive=3)

线程 3 (numLive=2)

线程 3 已经努力工作,现在正在终止

线程 2 (numLive=1)

线程 2 已经努力工作,现在正在终止

^C

我唯一能理解的是main报告的线程ID和线程本身是不同的,所以我猜由于并行调度,线程计数器发生了一些事情......你们能帮忙吗我缩小范围好吗?

提前致谢。

=========================================

感谢@mevets 和@user3386109 的回答:)

我尝试按照@mevets 的建议进行操作:i,e

pthread_create(&thread[idx].tid, NULL, threadFunc, (void *)idx);

int idx = (int)arg ;

但编译时出现此错误:

thread_multijoin.c: In function ‘threadFunc’:

thread_multijoin.c:32:15: error: cast from pointer to integer of different 
size [-Werror=pointer-to-int-cast]

int idx = (int)arg  ; // since arg is of type void , we typecast it to * of type int and deref it


thread_multijoin.c: In function ‘main’:

thread_multijoin.c:90:64: error: cast to pointer from integer of different 
size [-Werror=int-to-pointer-cast]

s = pthread_create(&thread[idx].tid, NULL, threadFunc, (void *)idx );

经过进一步研究,发现了这个帖子: cast to pointer from integer of different size, pthread code

建议使用 intptr_t :

s = pthread_create(&thread[idx].tid, NULL, threadFunc, (void *)(intptr_t)idx );

int idx = (intptr_t)arg

效果很好,没有错误。再次感谢您的宝贵时间,非常感谢 :)

PS : 要使用 intptr_t ,您需要使用 _GNU_SOURCE :

#define _GNU_SOURCE

【问题讨论】:

  • 您将&amp;idx 传递给线程。问题是idx 可能会在线程启动之前更改为main。所以线程可能会得到错误的索引,甚至是无效的索引(如果循环在线程开始之前完成)。

标签: c multithreading pthreads mutex pthread-join


【解决方案1】:

[线程ID]: 您将 idx 的地址传递给每个线程,然后取消引用它以索引表。所以每个线程都得到相同的指针参数。 您可能想要:

        s = pthread_create(&thread[idx].tid, NULL, threadFunc, (void *)idx);

和 int idx = (int)arg ; // 因为 arg 是 void 类型,我们将它类型转换为 int 类型的 * 并取消引用它

即;不要取消引用它,只需将它传递到“void *”容器中即可。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2014-10-18
    • 1970-01-01
    • 1970-01-01
    • 2019-09-10
    • 1970-01-01
    • 2011-08-08
    • 1970-01-01
    相关资源
    最近更新 更多