全部博文(1493)
发布时间:2013-03-26 09:55:51
truct file_operations是一个字符设备把驱动的操作和设备号联系在一起的纽带,是一系列指针的集合,每个被打开的文件都对应于一系列的操作,这就是file_operations,用来执行一系列的系统调用。linux-2.6.22/include/linux/fs.hstruct file_operations { struct module *owne.........【阅读全文】
发布时间:2013-03-26 09:55:47
废话不多说,直接上代码:#include <stdio.h>#include <mysql/mysql.h>#define HOST "192.168.56.2"#define DB "webdevtest"#define USER "webdev"#define PWD "webdev"#define PORT 3306int main(){&nbs.........【阅读全文】
发布时间:2013-03-22 09:11:10
安装cscope:(1)通过官网下载源码$tar zxfv cscope-15.5.tar.gz$cd cscope-15.5$./configure && make && make install然后把contrib/xcscope/目录下的cscope-indexer复制到PATH目录比如/usr/local/bin,再把xcscope.el复制到/usr/share/emacs/site-lisp,修改/usr/share/emacs/site-lisp/site.........【阅读全文】