我正在尝试为 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 */
}