我正在尝试将新的helloworld系统调用添加到新版本的Linux Ubuntu内核中。我一直在浏览网页,但我找不到一个一致的例子来向我展示我将要修改的文件,以便将helloworld系统调用添加到内核中。
我已经尝试了很多并且发生了编译错误。 我知道如何编译内核,但我只是不知道我在哪里添加我的程序系统调用,以及我将此调用添加到系统调用表以及我必须做的任何事情。
我正在开发最新的Linux Ubuntu内核。
我编译内核时引入了一个新的系统调用,一个名为mycall的简单调用,现在我的应用程序头文件中的编译错误会测试调用,下面是我的头文件#include<linux/unistd.h>
#define __NR_mycall 317
_syscall1(long, mycall, int, i)
这是我得到的语法错误
stef@ubuntu:~$ gcc -o testmycall testmycall.c
In file included from testmycall.c:3:
testmycall.h:7: error: expected declaration specifiers or ‘...’ before ‘mycall’
testmycall.h:7: error: expected declaration specifiers or ‘...’ before ‘i’
testmycall.c: In function ‘_syscall1’:
testmycall.c:7: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘{’ token
testmycall.h:7: error: parameter name omitted
testmycall.h:7: error: parameter name omitted
testmycall.c:11: error: expected ‘{’ at end of in
我从以下链接得到了很多帮助,来自Nikolai N Fetissov
答案 0 :(得分:3)
您正在使用的'_syscall1'宏已过时。改为使用系统调用(2)。
示例:强>
#include <stdio.h>
#include <linux/unistd.h>
#include <sys/syscall.h>
#define __NR_mysyscall 317
int main(void)
{
long return_value;
return_value = syscall(__NR_syscall);
printf("The return value is %ld.\n", return_value);
return 0;
}
答案 1 :(得分:0)
第2章,操作系统原则 - 加文。 直接的程序。