笔者理解:Kithara
RTS的多任务编程主要用于内核实时程序开发中,其体系结构比较像一些嵌入式实时操作系统,如ucos,freertos等。笔者翻译了一部分内容,有一些内容看原文更好理解,因此没有翻译。
Tasks The Multitasking Module offers task exec...
分类:
其他好文 时间:
2014-06-07 09:32:36
阅读次数:
262
SystemTap脚本主要是由探测点和探测点处理函数组成的,来看下都有哪些探测点可用。
The essential idea behind a systemtap script is to name events, and to give them handlers.
Systemtap works by translating the script to C, running the system C compiler to create a kernel module from that.
When t...
分类:
其他好文 时间:
2014-06-07 01:59:08
阅读次数:
369
timer:tc/3对于统计函数运行时间是个很不错的函数,截图timer:tc/1,tc/2,tc/3的API:拿斐波那契数列入手做个讲解:-module(fib).-export([fib/1]).fib(0)
-> 0;fib(1) -> 1;fib(N) when N>1 -> fib(N-1...
分类:
其他好文 时间:
2014-06-06 17:41:20
阅读次数:
325
防止污染。尽量减少抽象词的使用。1.限定空间 list>item2.命名空间
.m-list Module .u-btn UI .s-btn Skin .j-tag JS require .g-header 布局 .f-clearfix
function3.架构 base:reset...
分类:
Web程序 时间:
2014-06-06 15:00:13
阅读次数:
233
python中import一个模块时python解释器的搜索目录顺序:参考python帮助文档The
Module Search PathWhen a module namedspamis imported, the interpreter first
searches for a built-in...
分类:
其他好文 时间:
2014-06-06 09:45:30
阅读次数:
250
RequireJS填补了前端模块化开发的空缺,RequireJS遵循AMD(异步模块定义,Asynchronous
Module
Definition)规范,越来越多的框架支持AMD,像最近的jQuery,但有一些也不支持,像Backbone,那如何在RequireJS使用Backbone呢?需要使...
分类:
Web程序 时间:
2014-06-06 08:39:24
阅读次数:
395
apache 下配置gzip 和静态文件缓存...
分类:
其他好文 时间:
2014-06-05 10:12:05
阅读次数:
209
在安装AutoCAD2008时,安装过程中出现了一个小错误,虽然说不影响使用,也不影响功能,但还是需要把这个问题解决,今天就和大家分享解决这个问题的方法。错误描述会在安装过程中出现错误提示:Error
1904.Module C:Windowssystem32MacromedFlashFlash9....
分类:
其他好文 时间:
2014-06-03 15:45:33
阅读次数:
1240
After modifying system headers, please delete the module cache at '/Users/XXX/Library/Developer/Xcode/DerivedData/XXXX/2ZMDAUJMMHSDC'
解决办法:前往 '/Users/XXX/Library/Developer/Xcode/DerivedData/XXX/2ZM...
分类:
移动开发 时间:
2014-06-03 01:27:06
阅读次数:
284
yum命令升级的时候,报出这个错误。There was a problem importing one of the Python modules
required to run yum. The error leading to this problem was:
No module named yum
Please install a package which provides t...
分类:
编程语言 时间:
2014-05-31 17:42:52
阅读次数:
453