摘要:
///编译时加上-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... 阅读全文
摘要:
Linux下各种压缩包的解压方法 作者:intq 时间:2009-9-25 文章来源:来自网络 .tar 解包:tar xvf FileName.tar 打包:tar cvf FileName.tar DirName (注:tar是打包,不是压缩!) ——————————————— .gz 解压1: 阅读全文
摘要:
TCP通信的C/S模型 阅读全文
摘要:
UDP C/S编程的步骤如下图所示 <!--[if !supportLineBreakNewLine]--> <!--[endif]--> 阅读全文
摘要:
1、设置Git全局用户配置 2、创建本地新项目工作树 3. 更新文件 4. 创建和合并分支 转载了 http://blog.csdn.net/richardysteven/article/details/5956854内容。 阅读全文