发布时间:2014-02-16 17:03:29
http://www.myexception.cn/other/692874.html关于内核中 EXPORT_SYMBOL 导出变量的实例在内核中,可以通过这两个宏将变量导出,供其他模块使用:EXPORT_SYMBOL();EXPORT_SYMBOL_GPL(); 实例:hello.c:/***********************************************************************@@ 函数.........【阅读全文】
发布时间:2014-02-16 16:57:38
http://cjhust.blog.163.com/blog/static/175827157201011328596671、代码—helloworld.c#include <linux/init.h>#include <linux/kernel.h> #include <linux/module.h>static int hello_init(void){ printk("Hello! This is the helloworld module!\n");  .........【阅读全文】
发布时间:2014-02-16 16:35:20
在ubuntu12.04上完成内核编译1.apt-cache search --names-only Linux-source2.apt-get install Linux-source-3.2.03.make config4.make5.make modules6.make modules_install7.make install8.reboot......【阅读全文】
发布时间:2014-01-25 18:04:21
http://blog.csdn.net/ztejiagn/article/details/87227651 简介及安装Paste Deployment是一种机制,通过loadapp函数和一个配置文件或者egg包来载入WSGI应用。安装很简单,如下两种方式:$ sudo pip install PasteDeploy或者可以从github上进行源码安装$ hg clone http://bitbucket.org/ianb/pastedeploy $ cd.........【阅读全文】
发布时间:2014-01-25 17:50:39
http://blog.sina.com.cn/s/blog_7dc317590101cbkr.html问题: Python的函数定义中有两种特殊的情况,即出现*,**的形式。 如:def myfun1(username, *keys)或def myfun2(username, **keys)等。解释: * 用来传递任意个无名字参数,这些参数会一个Tuple的.........【阅读全文】