如何将多个参数传递给C中的线程

时间:2011-11-22 08:12:24

标签: c pthreads posix

我正在尝试将两个参数传递给C中的一个线程。我创建了一个数组(大小为2)并且我试图将该数组传递给线程。这是将多个参数传递给线程的正确方法吗?

// parameters of input. These are two random numbers 
int track_no = rand()%15; // getting the track number for the thread
int number = rand()%20 + 1; // this represents the work that needs to be done
int *parameters[2];
parameters[0]=track_no;
parameters[1]=number;

// the thread is created here 
pthread_t server_thread;
int server_thread_status;
//somehow pass two parameters into the thread
server_thread_status = pthread_create(&server_thread, NULL, disk_access, parameters);

2 个答案:

答案 0 :(得分:18)

由于你传入一个void指针,它可以指向任何东西,包括一个结构,按照下面的例子:

typedef struct s_xyzzy {
    int num;
    char name[20];
    float secret;
} xyzzy;

xyzzy plugh;
plugh.num = 42;
strcpy (plugh.name, "paxdiablo");
plugh.secret = 3.141592653589;

status = pthread_create (&server_thread, NULL, disk_access, &plugh);
// pthread_join down here somewhere to ensure plugh
//   stay in scope while server_thread is using it.

答案 1 :(得分:1)

这是一种方式。另一个常见的是将指针传递给struct。通过这种方式,您可以使用不同的“参数”类型,并且参数被命名而不是索引,这有时可以使代码更容易阅读/跟踪。