我写了这段代码,但是当尝试编译它时,它返回了这个错误:
:24:8: error: conflicting types for ‘safe_syscall’
:19:10: note: previous implicit declaration of ‘safe_syscall’ was here
我指定了行数。
typedef struct syscall ditem;
void safe_syscall_set (vmi_instance_t vmi)
{
ditem *head,*tmp = NULL;
char *name;
int num;
FILE * fp;
fp = fopen ("syscall.list", "r");//file including syscall names and numbers in format "name number"
//read file of syscalls and numbers
while(fscanf(fp, "%s %d",name, &num)!= EOF);
{
tmp = head;
/* 19 */
head = safe_syscall(name,num,tmp,vmi);
}
return;
}
/* 24 */
ditem *safe_syscall (char *syscall,int num,ditem *head,vmi_instance_t vmi)
{
uint64_t *sys_call_table = 0xffffffff816003e0;
uint64_t *memory = (uint64_t *) malloc(sizeof(*sys_call_table));
char *path = "/home/ossl5/sysmap";//hardcoded
FILE *fp;
fp=fopen(path,"r");
if(!fp)
{
printf("ERROR CAN NOT OPEN SYSTEM.MAP FILE\n");
goto exit;
}
curr = (ditem *)malloc(sizeof(ditem));
curr->num = num;
curr->next = head;//new nodes are being added to head of the list
head = curr;
curr->sys_name = syscall;
//Calculating syscall handler size
curr->size = sys_routine_size(fp,syscall,num);
exit:
return head;
}
我猜 struct 作为输出有问题。这个 struct 是一个链表,每次调用safe_syscall
函数时,都会将新节点添加到列表的头部,并由该函数返回新的头部。