我现在正在编写一个测试程序来降低基础,但是运行时它将垃圾值输入到我的结构中。

如果抱歉,这有点不完整,我一直在使用它,在网上搜索了几个小时,而我所做的一切似乎都是正确的,但是当我通过pthread_create函数将这些临界值传递给某些临界值时,我将其插入了垃圾中。

谢谢你的帮助!

这段代码为我提供了以下输出:

主要功能正在运行!

初始gWorkerid = 0

workerID = 319534848

你好杜迪!

结束睡眠

gWorkerid现在是垃圾值= -946297088

我期望:

主要功能正在运行!

初始gWorkerid = 0

workerID = 0

你好杜迪!

结束睡眠

gWorkerid现在是垃圾值= 0

    #include <sys/socket.h>
    #include <netinet/in.h>
    #include <arpa/inet.h>
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    #include <sys/types.h>
    #include <pthread.h>

    #define MAX_CONN 3
    #define MAX_LINE 1000

    typedef struct worker_t
    {
        int id;
        int connection;
        pthread_t thread;
        int used;
    }WORKER_T;

    struct sockaddr_in gServ_addr;

    WORKER_T gWorker[MAX_CONN];
    char sendBuff[1025];

    // Thread function
    void * worker_proc(void *arg)
    {
        WORKER_T *me = (WORKER_T*) arg;

        printf("Howdy Doody!\n");

        return NULL;
    }

    int main(int argc, char *argv[])
    {
        printf("main function running!\n");
        pthread_t threadTest;
        int i = 0;

        gWorker[i].id = i;
        printf("initial set of gWorkerid = %d\n", gWorker[i].id);
        gWorker[i].connection = i;
        gWorker[i].used = 1;
        pthread_create(&gWorker[i], NULL, worker_proc, &gWorker[i]);

        sleep(1);

        printf("end sleep\n");
        printf("gWorkerid is now trash value = %d\n", gWorker[i].id);

        return 0;
    }

最佳答案

该行:

pthread_create (&gWorker[i], NULL, worker_proc, &gWorker[i]);


实际上应该是:

pthread_create (&(gWorker[i].thread), NULL, worker_proc, &gWorker[i]);


pthread_create()的第一个参数是存储线程ID的位置,对于您的代码,它在结构的开头存储它,覆盖id

通过传递结构的线程ID部分的地址,id应该保持不变。

关于c - 线程化程序并将结构更改为垃圾值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14639417/

10-15 22:54