我收到以下代码错误:

kernel/proc.c: In function ‘getpinfo’:
kernel/proc.c:495: error: parameter name omitted

代码如下:
int
getpinfo(struct pstat *)
{
}

你能告诉我关于结构或代码我遗漏了什么吗?

最佳答案

     int
     getpinfo(struct pstat *)
      {
      }

没有给出任何参数名。
Function definition should contain List of parameters, with valid type and parameters names.where as in declarations parameter Names are optional
这应该是
     int
     getpinfo(struct pstat *some_name)
       {
       }

10-07 14:43