我在Linux中编写一个系统调用,为此我想用
kthread_run
创建几个线程。然而,当我传递函数指针时,我得到了。
error: passing argument 1 of ‘kthread_create_on_node’ from incompatible pointer type
以下是相关代码。
//method to do nothing for 100 milliseconds
int exist()
mdelay(100);
return 0;
//function pointer to exist
int (*exist_ptr)(void) = ∃
//create processes and delta queues
for (i = PROC_NUM - 1; i >= 0; i--)
char name[6] = {'d', 'e', 'l', 't', 'a', i2};
delta_entry de = {
.task = kthread_run(exist_ptr, NULL, name);
.list = linked_list;
.delta_time = PROC_NUM * MILSEC_GAP;
.position = i2;
enqueue(&linked_list, &de, i2 - 1);
i2++;
这显然不是所有的代码,因为我不想让帖子太长。谢谢你!"。