全部博文(2759)
发布时间:2013-09-26 10:11:29
1.proc文件读写代码:static int kdc_proc_write(struct file *file, const char __user *buffer,unsigned long count, void *data){ char config_data[100]={0x00}; //unsigned long long target_bytes; &nb.........【阅读全文】
发布时间:2013-09-22 11:22:59
前面提到了Linux下的时间相关的硬件。TSC PIT,HPET,ACPI_PM,这些硬件以一定的频率产生时钟中断,来帮助我们计时。Linux为了管理这些硬件,抽象出来clocksource。struct clocksource { /* * Hotpath data, fits in a.........【阅读全文】
发布时间:2013-09-22 11:22:50
初级I/O编程: open函数和creat函数 (1).open函数 名称:打开或若指定打开的文件不存在则创建 总揽: #include int open(const char *pathname,int flags,mode_t mode) int open(const char *pathname,int flags) 参数说明: pathname:一个字符串参数,用来指定一个打开的文件名,包含完整路.........【阅读全文】