
Useful Tools
文章平均质量分 73
chaosinux
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Lighttpd - HTTPStates
第一次接触graphviz,看起来挺简单方便的,以后画状态图之类的可以考虑一下。 把下面代码保存为HTTPStates.dot #!graphviz digraph state { edge [color=green]; connect -> reqstart -> read -> reqend -> handlereq -> respstart -> write转载 2012-08-08 17:17:31 · 608 阅读 · 0 评论 -
Valgrind
The Valgrind tool suite provides a number of debugging and profiling tools that help you make your programs faster and more correct. The most popular of these tools is called Memcheck. It can detect转载 2012-08-10 16:05:00 · 528 阅读 · 0 评论 -
Lemon Parser Generator
lighttpd的配置文件需要用到lemon来分析,lemon是一个LALR(1)的语法分析生成器。 本来以为要用到LALR(1)的知识,刚好上个学期学了编译原理这门课,但是由于课时 不够,Bottom-Up Parsing只讲了LR(0)和SLR(1),LR(1)和LALR(1)没讲到,所以在 尝试使用lemon之前特意花了一个小时去看了LR(1)和LALR(1)的知识。好在基础的 知识原创 2012-08-12 15:20:33 · 4198 阅读 · 0 评论