c - 分配结构堆与堆栈 : Pthread_create

标签 c multithreading pthreads heap-memory stack-memory

我正在尝试为 arg_struct 动态分配内存。如果我只是在堆栈上分配它,它可以正常工作,但不是动态的。它动态地在主函数中打印字符串,但是当它传递给线程函数时它不起作用。关于为什么它不起作用的任何想法?

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


struct arg_struct {
    int *arg1;
    char *str;
};

void *print_the_arguments(void *arguments)
{
    struct arg_struct *args = (struct arg_struct *)arguments;
    printf("The result is : %s\n",args->str);
    pthread_exit(NULL);
    return NULL;
}

int main()
{
    pthread_t some_thread;
    struct arg_struct *args = malloc(sizeof(struct arg_struct));
    //struct arg_struct args; // uncommenting this and args.str WORKS (prints to thread function)
    args->str = malloc(sizeof(char)*6);
    args->str = "hello";
    //args.str = "hello";
    printf("printing from main: %s\n", args->str); // Prints here but not in other function

    if (pthread_create(&some_thread, NULL, &print_the_arguments, (void *)&args) != 0) {
        printf("Uh-oh!\n");
        return -1;
    }

    return pthread_join(some_thread, NULL); /* Wait until thread is finished */

}

最佳答案

这个

29     if (pthread_create(&some_thread, NULL, &print_the_arguments, (void *)&args) != 0) {

应该是

29     if (pthread_create(&some_thread, NULL, &print_the_arguments, (void *)args) != 0) {

当您动态分配参数时。另外,我建议

 25     args->str = strdup("hello");

并跳过 malloc

这段代码:

 24     args->str = malloc(sizeof(char)*5);
 25     args->str = "hello";

导致内存泄漏,malloc的内存泄漏。也许你的意思是

 24     args->str = malloc(sizeof(char)*5);
 25     strcpy(args->str, "hello");

但这也是不正确的。 5 应该是 6 来解释空字符 在字符串的末尾。 strdup()malloc 后跟 strcpy 的一个很好的快捷方式。

关于c - 分配结构堆与堆栈 : Pthread_create,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19328540/

相关文章:

c - 使用未声明的标识符 'ENOMEM'

c - while循环打印和scanf

c - fputws 到 stderr 使应用程序崩溃

c - 如何在 C 中将 stdin 的值存储到数组中?

java - 如何停止 BufferedReader readline()?

c# - FIFO编程的主线程调度程序?

java - 在 Socket.getInputStream 之前向 SocketInputStream 发送一些内容?

c - 使用pthread_exit终止并返回的线程终止-奇怪的示例

c++ - 如何用pthread获取信号量的信息

c++ - 从套接字接收后出现 SEGFAULT