摘要: 例一:system系统调用是为了方便调用外部程序,执行完毕后返回调用进程。#include #include main(){ printf("call ls return %d\n",system("pstree -p"));}gcc -o jingce jingce.c 编译成可执行文件然后... 阅读全文
posted @ 2015-03-11 10:43 kin2321 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 例一:不使用多线程#-*-coding:utf-8-*-#compare for multi threadsafetyimport timedef worker(): print "worker" time.sleep(1) returnif __name__=="__main__... 阅读全文
posted @ 2015-03-11 10:33 kin2321 阅读(130) 评论(0) 推荐(0) 编辑