全部博文(2759)
发布时间:2013-05-10 06:07:27
简介CVS 是 Concurrent Version System(并行版本体系)的缩写,用于版本管理.假如人人曾经参加过多人协作开拓的项目,人人确定有如许的悲凉经验:由于多小我私家同时批改同一个文件, 本身辛辛劳苦批改的措施被别人彻底删除了.其它,假如你的软件/措施已经公布了三个版本, 而这时间用.........【阅读全文】
发布时间:2013-05-10 06:07:11
suse 12.3上要开个nfs目录用于helper2416开发板加载根文件系统, 于是用yast安装了nfs-server,然后配置了个共享目录:开yast--网络服务--nfs服务器--添加目录 中添加目录,比如我的:/home/zengming/workspace/root_qtopia主机通配符中填:* 选项:rw,sync,no_root_squash点击完成。问题:sus.........【阅读全文】
发布时间:2013-05-08 05:47:52
int open (const char *pathname, int flags, mode_t mode); FILE *fopen (const char *path, const char *mode); 前者属于低级IO,后者是高级IO。 前者返回一个文件描述符(用户程序区的),后者返回一个文件.........【阅读全文】
发布时间:2013-05-06 09:45:03
我们接上一篇继续学习,这一篇的重点放在线程栈上。 我们用过pthread_create接口,也用过pthread_self接口,请看manual中的声明: #include int pthread_create(pthread_t *thread, const pthread_.........【阅读全文】