English
首页
论坛
博客
多用户博客
在线工具
在线手册
开通博客赚积分
发布资源赚积分
分类
源码开发语言/平台
当前位置:
首页
> 源码/资料 >
Linux/Unix编程
> 查看源码
sem1.C
资源名称:
threads-2.0.tar.gz [点击查看]
上传用户:
shtangtang
上传日期:
2007-01-04
资源大小:
167k
文件大小:
0k
源码类别:
Linux/Unix编程
开发平台:
Unix_Linux
sem1.C:源码内容
#include <thread.h>
#include <thread_semaphore.h>
main()
{
pthread::set_project( "/tmp/sematest" );
semaphore sem(attributes::process_shared);
sem.wait();
cout << "Got signal from semaphore.." << endl;
}