CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 文档资料 搜索资源 - 读者写者

搜索资源列表

  1. 45g4g

    1下载:
  2. 大学本课操作系统课程设计指导书(1)假脱机技术的模拟(2)读者—写者问题的模拟-university courses on operating system design based curriculum guide book (1) at the off-line simulation technology (2) the reader-written persons Simulation
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:5525
    • 提供者:熊熊
  1. CWriterReader

    0下载:
  2. C实现的操作系统的读者写者问题,一份报告,包括代码。
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:10697
    • 提供者:汪尾
  1. 写者与读者实验报告

    1下载:
  2. 在Windows Xp 环境下,创建一个包含n 个线程的控制台进程。用这n 个线程来表示n个读者或写者。每个线程按相应测试数据文件的要求,进行读写操作。请用信号量机制分别实现读者优先和写者优先的读者-写者问题。 读者-写者问题的读写操作限制: 读者-写者的读写限制(包括读者优先和写者优先) 1)写-写互斥,即不能有两个写者同时进行写操作 2)读-写互斥,即不能同时有一个读者在读,同时却有一个写者在写 3)读读允许,即可以有2个以上的读者同时读 将所有的读者和所有的写者分别放进两个等待队列中,当读
  3. 所属分类:编程文档

    • 发布日期:2011-06-04
    • 文件大小:32627
    • 提供者:zhzghyd
  1. 597971

    0下载:
  2. 操作系统进程同步与互斥读者与写者问题部分源码-OS process mutex synchronization and readers are part of the problem and write source code
  3. 所属分类:File Formats

    • 发布日期:2017-04-16
    • 文件大小:31528
    • 提供者:兔儿
  1. inter

    0下载:
  2. C++面试许多面试题看似简单,却需要深厚的基本功才能给出完美的解答。企业要求面试者写一个最简单的strcpy函数都可看出面试者在技术上究竟达到了怎样的程度,我们能真正写好一个strcpy函数吗?我们都觉得自己能,可是我们写出的strcpy很可能只能拿到10分中的2分。读者可从本文看到strcpy函数从2分到10分解答的例子,看看自己属于什么样的层次。此外,还有一些面试题考查面试者敏捷的思维能力。-C++
  3. 所属分类:software engineering

    • 发布日期:2017-04-27
    • 文件大小:15837
    • 提供者:huang traoye
  1. caozuoxitong.doc

    0下载:
  2. 操作系统课程设计报告,实现读者与写者问题。-Operating systems curriculum design report, the reader realize the problem and write.
  3. 所属分类:Document

    • 发布日期:2017-04-17
    • 文件大小:116640
    • 提供者:凤之羽
  1. PV

    0下载:
  2. 读者写者问题,共享原则如下:1、读/写互斥访问;2、写/写互斥访问;3、允许多个读者同时对文件进行访问。-semaphore rmutex=1,rwmutex=1 int count=0 Cobegin reader: writer:
  3. 所属分类:File Formats

    • 发布日期:2017-04-01
    • 文件大小:732
    • 提供者:baoyu
  1. readerwriter

    0下载:
  2. 实验一 用信号量来实现读者-写者问题 (一) 实验目的 理解进程(或线程)及信号量的概念 (二) 实验内容 1、定义一个数据缓存buffer及用于实现同步互斥的信号量。 2、定义一个读者函数: 当有写者在占用buffer时,读者应该等待,直到写者不再使用该buffer。 当有其他读者在占用buffer时,读者可对buffer进行读取操作。 当buffer中有数据时,则从其中读取一个数据,并显示然后退出。 当buffer中没有数据时,应等待,直到buffe
  3. 所属分类:software engineering

    • 发布日期:2017-03-30
    • 文件大小:122786
    • 提供者:镡皓琳
  1. rr

    0下载:
  2. 读者写者问题设计报告。很详细。 包括: 设计概述 设计目的与内容 设计分析 程序实现 程序调试 实验结果 -Reader-writer problem design report. Very detailed. Include: Design Overview Design and content designed to achieve program debugging program results
  3. 所属分类:Project Design

    • 发布日期:2017-04-06
    • 文件大小:62204
    • 提供者:沈佳
  1. reader

    0下载:
  2. 操作系统读者写者问题实验报告,内附程序源码,实验结果图等,详细易懂-Operating system readers who write lab report, containing a program source code, experimental results map, detailed and easy to understand
  3. 所属分类:Communication

    • 发布日期:2017-11-21
    • 文件大小:114545
    • 提供者:
  1. write-and-reader-priority

    0下载:
  2. (1)任意多的读进程可以同时读这个文件; (2)一次只允许一个写进程往文件中写; (3)如果一个写进程正在往文件中写,禁止任何读进程或写进程访问文件; (4)写进程执行写操作前,应让已有的写者或读者全部退出。这说明当有读者在读文件时不允许写者写文件。-(A) any number of reading processes can simultaneously read the file (2) allows only one process to write the file to
  3. 所属分类:File Formats

    • 发布日期:2017-11-12
    • 文件大小:57810
    • 提供者:
  1. 00498691morethreadreader

    0下载:
  2. 使用多线程写的读者写者问题是课程设计要用到的很重要的文档-Courses on operating system design, readers who write, written using C language to meet the requirements of the German
  3. 所属分类:software engineering

    • 发布日期:2017-04-08
    • 文件大小:19557
    • 提供者:fipenran
  1. windowsProcess

    0下载:
  2. 秒杀多线程读者写者问题 用读写锁来解决读者写者问题会使代码非常清晰和简洁。-Processes of Wriiter & Reader
  3. 所属分类:software engineering

    • 发布日期:2017-04-12
    • 文件大小:1527
    • 提供者:Moon
  1. Operating-systems-curriculum-design

    0下载:
  2. 利用模拟用信号量机制实现读者和写者问题:通过用户控制读进程和写进程,反应读者和写者问题中所涉及的进程的同步与互斥。-Using simulated using semaphore mechanisms readers and writers problem: by the user to control the reading process and the writing process, the reaction synchronization and mutual exclusion pr
  3. 所属分类:Project Design

    • 发布日期:2017-04-25
    • 文件大小:136680
    • 提供者:zhao
搜珍网 www.dssz.com