混淆克隆传递参数

时间:2014-03-27 13:05:43

标签: c++ casting arguments clone type-conversion

所以基本上我正在解决着名的#34; Philosopher dining"问题,5位哲学家正在使用克隆生成。关键是我希望每个哲学家都持有一个id(从0到4)。我计划使用克隆传递参数来做到这一点。这是代码(我省略了一些子功能)

void philoshopher(void* arg)
{
    int i = &arg;

    while (TRUE)
    {
        printf("Philosopher %d is thinking", i);
        take_forks(i);
        printf("Philosopher %d is eating", i);
        sleep(2);
        put_forks(i);
     }
}
int main(int argc, char **argv)
{
    int i;
    int a[N] = {0,1,2,3,4};
    void* arg;
    /*
    struct clone_args args[N];
    void* arg = (void*)args;
    */

    if (sem_init(&mutex, 1, 1) < 0)
    {
        perror(NULL);
        return 1;
    }
    for (i=0;i<N;i++)
    {   if (sem_init(&p[i], 1, 1) < 0)
        {
            perror(NULL);
            return 1;
        }
    }

    int  (*philosopher[N])() ;
    void * stack;

    for (i=0; i<N; i++)
    {
        if ((stack = malloc(STACKSIZE)) == NULL)
        {
            printf("Memorry allocation error");
            return 1;
        }
        int c = clone(philosopher, stack+STACKSIZE-1, CLONE_VM|SIGCHLD, &a[i]);
        if (c<0)
        {
            perror(NULL);
            return 1;
        }
    }
    //Wait for all children to terminate 
    for (i=0; i<4; i++)
    {
        wait(NULL);
    }
    return 0;
}

编译后,我收到此错误:

passing argument 1 of ‘clone’ from incompatible pointer type [enabled by default]
expected ‘int (*)(void *)’ but argument is of type ‘int (**)()’

我也尝试将它转换为void指针,但结果仍然相同:

void* arg;
....
arg = (void*)(a[i]);
int c = clone(...., arg);

任何人都知道如何解决这个问题。谢谢你的帮助。

1 个答案:

答案 0 :(得分:0)

您没有正确声明您的函数指针。它应该是这样的:

int  (*philosopher[N])(void*);

基本上当你声明函数指针时,你必须指定参数类型,因为指向接受不同类型的函数的指针(谢天谢地!)彼此不兼容。

我认为你还需要删除&amp;在函数调用中的[i]之前。那就是给你一个指向函数指针的指针,它只是显然需要一个普通的函数指针。