Let's go!!!!!
发布时间:2016-01-28 15:52:58
#include<linux/module.h>#include<linux/kernel.h>#include<linux/proc_fs.h>#include<linux/sched.h>#include<asm/uaccess.h>#define STRINGLEN 1024char global_buffer[STRINGLEN];struct proc_dir_entry *hello_file;struct proc_dir_entry *example_dir1;struct proc_dir_entry *example_dir2;int proc_.........【阅读全文】
发布时间:2016-01-28 14:50:42
Linux系统上的/proc目录是一种文件系统,即proc文件系统。与其它常见的文件系统不同的是,/proc是一种伪文件系统(也即虚拟文件系 统),存储的是当前内核运行状态的一系列特殊文件,用户可以通过这些文件查看有关系统硬件及当前正在运行进程的信息,甚至可以通过更改其中某些文件来改变 内核的运行状态。基于/proc.........【阅读全文】
发布时间:2015-07-17 14:59:27
#include <linux/errno.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/sysctl.h>
#include <linux/module.h>
static int num=10;
module_param(num,int,S_IRUGO);
static ctl_table scsi_t.........【阅读全文】