分类: LINUX
2011-08-29 10:32:18
NAME
call_usermodehelper - start a usermode application
SYNOPSIS
Runs a user-space application. The application is started asynchronously if wait is not set, and runs as a child of keventd. (ie. it runs with full root capabilities).
Must be called from process context. Returns a negative error code if program was not execed successfully, or 0.
在网上可以找到很多它的用法,其实我想说的时,当内核调用用户空间的程序时,在传递参数最好是把绝对路径加上。因为发现其实是把用户程序拷贝到根目录下运行,如果参数是一些文件的什么的就要用绝对路径,不然会发现调用后没有达到预期的效果。
4 文件流操作
在文件流操作中有几个函数如:
fseek(FILE,offset,whence);
fprintf(FILE,format,str);
fscanf(FILE,format,str);
这三个函数都是把文件指针写在第一个参数。而其他的函数都把文件指针写在参数的最后一个。
fread(str,size,count,FILE);
fwrite(str,size,count,FILE);
fgets(str,count,FILE);
fputs(str,count,FILE);
5 函数的参数传递问题
今天看到一道题