免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12
最近访问板块 发新帖
楼主: wonderfulboiz
打印 上一主题 下一主题

跪求模拟“五个哲学家”问题的程序 [复制链接]

论坛徽章:
0
11 [报告]
发表于 2008-04-16 14:10 |只看该作者
用pthread做。

论坛徽章:
0
12 [报告]
发表于 2008-04-16 17:13 |只看该作者
我用记录锁那章的内容编了个lock函数用于资源锁,编出来了运行后显示如下结果(不知道对不对?):
philosopher 0 is thinking
philosopher 1 is thinking
philosopher 2 is thinking
philosopher 3 is thinking
philosopher 4 is thinking
philosopher 0 is eating
philosopher 2 is eating
philosopher 0 is thinking
philosopher 4 is eating
philosopher 2 is thinking
philosopher 1 is eating
philosopher 4 is thinking
philosopher 3 is eating
philosopher 1 is thinking
philosopher 0 is eating
philosopher 3 is thinking
philosopher 2 is eating
philosopher 0 is thinking
philosopher 4 is eating
philosopher 2 is thinking
philosopher 1 is eating
philosopher 4 is thinking
philosopher 3 is eating
philosopher 1 is thinking
philosopher 0 is eating
philosopher 3 is thinking
philosopher 2 is eating

论坛徽章:
0
13 [报告]
发表于 2008-04-20 08:55 |只看该作者
哈哈 你是XD的吧  是哪个?
lock.c lock.h 在老师给的源代码里面有阿
其实就是用创建文件的原子操作的原理
lock.c里面有三个函数
/*************************************
*
* 初始化餐叉文件,保证在程序开始前,
* 餐叉文件不存在
*
**************************************/
void initlock(const char *lockfile)
{

        unlink(lockfile);
}

/*************************************
*
* 为餐叉文件上锁
*
**************************************/
void lock(const char *lockfile)
{
        int        fd;
        while ( (fd = open(lockfile, O_RDONLY | O_CREAT | O_EXCL, FILE_MODE)) < 0)
                sleep(1);
        close(fd);
}

/*************************************
*
* 解除餐叉文件的锁
*
**************************************/
void unlock(const char *lockfile)
{
        unlink(lockfile);
}

论坛徽章:
0
14 [报告]
发表于 2008-04-24 15:02 |只看该作者
谢谢楼上热情的lena同学,o(∩_∩)o...哈哈
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP