函数声明不是C中的原型

时间:2015-08-22 15:22:33

标签: c compiler-errors linux-kernel

我正在学习为初学者编写Linux内核模块。我要做的是使用DFS算法将每个任务及其子进程写入内核日志。但是当我使用Makefile编译代码时,它会显示上述错误:

function declaration isn’t a prototype [-Werror=strict-prototypes]
struct task_struct *current;

它指出函数DFS上的task_struct关键字。 这是我的代码:

# include <linux/init.h>
# include <linux/kernel.h>
# include <linux/module.h>
# include <linux/sched.h>
# include <linux/list.h>

void DFS (struct task_struct *task)
{
    struct task_struct *current;
    struct list_head *list;

    list_for_each (list, &task->children)
    {
        current = list_entry(list, struct task_struct, sibling);
        printk(KERN_INFO "%d\t%d\t%s \n", (int)current->state, current->pid, current->comm);

        if (current != NULL)
        {
            DFS(current);
        }
    }
}

int DFS_init(void)
{
    printk(KERN_INFO "Loading the Second Module...\n");

    printk(KERN_INFO "State\tPID\tName\n");

    DFS(&init_task);   

    return 0;
}

void DFS_exit(void)
{
    printk(KERN_INFO "Removing the Second Module...\n");
}

任何人都知道如何解决这个问题?

1 个答案:

答案 0 :(得分:4)

Kernal有一个名为current的宏,它指向当前正在执行进程的用户。正如This book所述,

  

当前指针指的是当前正在执行的用户进程。在执行系统调用(例如open或read)期间,当前进程是调用该调用的进程。

换句话说,正如@GilHamilton在评论中提到的那样,current#define d到核心中的函数get_current()

因此,使用current作为变量名将产生编译时错误!!!