以装载和卸载模块为例:
1、首先输入代码
#include <linux/init.h>
#include <linux/module.h>
2、然后输入下方的代码:
static int my_init(void)
{
return 0
}
static void my_exit(void)
3、然后在输入下方的代码:
{
return
}
module_init(my_init)
module_exit(my_exit)这样就完成了。
# include <stdio.h># include <stdlib.h>
# include <string.h>
# include <unistd.h>
int main(int argc,char * argv[])
{
void *source,*target,*command
if (argc<3)
{
printf("使用方法:\n./my_cp 【源文件】 【目的地】\n")
exit(-1)
}
source = malloc(1024)
target = malloc(1024)
command = malloc(2060)
source = (void *) argv[1]
target = (void *) argv[2]
strcpy(command,"cp ")
strcpy(command,source)
strcpy(command," ")
strcpy(command,target)
system(command)
return 0
}
linux终端下,编译C语言程序步骤为:采用vi进行源代码编写,编写完成后,:wq存盘退出,如:
vi
test.c
在命令行下,运行gcc编译程序,生成执行码,如:
gcc
-o
test
test.c
-o
表示指明生成的执行码名称
运行编译后的执行码
./test
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)