摘要: ///编译时加上-lpthread #include #include #include #include #include #include sem_t sem1,sem2; void fun(void *arg) { printf("fall asleep\n"); sem_wait(&sem1);printf(" 1\n");sem_post(&sem2); sem... 阅读全文
posted @ 2015-01-04 12:09 CrazyDiode 阅读(587) 评论(0) 推荐(0) 编辑
摘要: Linux下各种压缩包的解压方法 作者:intq 时间:2009-9-25 文章来源:来自网络 .tar 解包:tar xvf FileName.tar 打包:tar cvf FileName.tar DirName (注:tar是打包,不是压缩!) ——————————————— .gz 解压1: 阅读全文
posted @ 2015-01-04 12:04 CrazyDiode 阅读(236) 评论(0) 推荐(0) 编辑
摘要: TCP通信的C/S模型 阅读全文
posted @ 2015-01-04 11:56 CrazyDiode 阅读(526) 评论(0) 推荐(0) 编辑
摘要: UDP C/S编程的步骤如下图所示 <!--[if !supportLineBreakNewLine]--> <!--[endif]--> 阅读全文
posted @ 2015-01-04 11:21 CrazyDiode 阅读(1364) 评论(0) 推荐(0) 编辑
摘要: 1、设置Git全局用户配置 2、创建本地新项目工作树 3. 更新文件 4. 创建和合并分支 转载了 http://blog.csdn.net/richardysteven/article/details/5956854内容。 阅读全文
posted @ 2015-01-04 11:08 CrazyDiode 阅读(181) 评论(0) 推荐(0) 编辑