ccx_wz的ChinaUnix博客chencaixiong.blog.chinaunix.net
ccx_wz
全部博文(489)
2013年(7)
2012年(301)
2011年(181)
jiuniu11
liangsto
sh365
dyli2000
CU官方博
y3079214
smsong_c
rubik_ns
guoxiaor
wb123456
cynthia
浪花小雨
Bsolar
178919
tomcodin
UMK_eRai
linux_ss
分类:
2011-12-22 20:50:37
原文地址:线程同步——信号量 作者:luozhiyong131
#include <stdio.h>#include <stdlib.h>#include <string.h>#include <pthread.h>#include <semaphore.h> /*必须包含这个头文件*/sem_t sem;char buffer[256];void mythread(void){sem_wait(&sem);while(strncmp("exit",buffer< 阅读(397) | 评论(0) | 转发(0) | 0 上一篇:线程同步(条件变量) 下一篇:线程退出保护设计 给主人留下些什么吧!~~ 评论热议 请登录后评论。 登录 注册
上一篇:线程同步(条件变量)
下一篇:线程退出保护设计
登录 注册