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

搜索资源列表

  1. reader-writerproblem

    0下载:
  2. 用c实现读者写者问题,为每一个读者和写者都创建了一个线程,显示读者或写者自定义标识符、当前指针、存储区内容
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:1299
    • 提供者:song
  1. operation

    0下载:
  2. 在linux环境下实现操作系统的读者-写者问题.读者写者随机访问.
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:172107
    • 提供者:sara
  1. duzhexiezhe

    0下载:
  2. 操作系统读者写者问题实验报告 包括结果 目的 心得 等等 有意者下来观摩
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:57183
    • 提供者:飘散风
  1. Reader-Writer

    0下载:
  2. 通过研究Linux的线程机制和信号量实现读者写者(Reader-Writer)问题并发控制。 1)写-写互斥:不能有两个写者同时进行写操作; 2)读-写互斥:不能同时有一个线程在读,而另一个线程在写; 3)读-读允许:可以有一个或多个读者在读; 4)读者优先的附加限制:如果读者申请进行读操作时已有另一个读者正在进行读操作,则该读者可直接开始读操作; 5)写者优先的附加限制:如果一个读者申请进行读操作时已有另一个写者在等待访问共享资源,则该读者必须等到没有写者处于等待状态后才能
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:7772
    • 提供者:vivien
  1. readerwriter

    0下载:
  2. 多线程实现读者写者问题,用信号量控制的多线程实现-Readers to write to achieve multi-threading problem
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:7469
    • 提供者:pengbo
  1. 1_ReadWrite

    0下载:
  2. 操作系统,vc++6.0,读者写者实验,付源码,可运行-Operating system, vc++6.0, the readers who write experiments, source to pay to run
  3. 所属分类:OS Develop

    • 发布日期:2017-05-14
    • 文件大小:3331841
    • 提供者:jsbykmd
  1. Reader_Writer

    0下载:
  2. 操作系统中的进程互斥与同步问题的一个例子 即读者写者问题 源码 -Operating in mutual exclusion and synchronization issues that readers write one example of the problem of source
  3. 所属分类:OS Develop

    • 发布日期:2017-04-09
    • 文件大小:2108726
    • 提供者:cocoa0722
  1. Minix_shell

    0下载:
  2. Minix下shell的实现 & 读者写者问题的实现 & piple监视系统的实现-Implementation & under Minix shell readers to write the problem of the realization of & piple Monitoring System
  3. 所属分类:OS Develop

    • 发布日期:2017-04-06
    • 文件大小:381578
    • 提供者:jjc
  1. rw

    0下载:
  2. 读者写者具体实现代码,当读者操作时不允许新的写着操作,当写者操作时不允许其他任何操作-Concrete implementation of the code written by readers, when readers read operation does not allow the new operation, when the writer does not allow any other operations operations
  3. 所属分类:source in ebook

    • 发布日期:2017-04-04
    • 文件大小:1368
    • 提供者:李楠
  1. OS_ReaderWriter

    0下载:
  2. 计算机操作系统编程。解决读者写者问题,采用C++进行编写-Computer operating system programming. Readers to write to solve those problems, were prepared using C++
  3. 所属分类:OS Develop

    • 发布日期:2017-04-14
    • 文件大小:2678
    • 提供者:袁昊
  1. readerwirter

    0下载:
  2. 读者写者问题,操作系统的经典实验,用c实现-Reader-writer problem, the operating system of the classic experiment, realized with the c
  3. 所属分类:OS Develop

    • 发布日期:2017-04-14
    • 文件大小:2967
    • 提供者:lianjx
  1. reader_writer

    0下载:
  2. 计算机操作系统的实验报告——读者写者问题-Experimental Report of the computer operating system- the reader-writer problem
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:31219
    • 提供者:zhao
  1. 2

    0下载:
  2. 这是操作系统的一个关于读者写者的代码,内容以及算法基本符合要求-This is one of the operating system' s code written on the reader, the basic content and algorithms to meet the requirements
  3. 所属分类:OS Develop

    • 发布日期:2017-04-04
    • 文件大小:926
    • 提供者:冯霞
  1. duzhexiezhe

    0下载:
  2. 读者写者源代码 操作系统课程设计 对大家肯定有帮助-Readers who write the source code operating system curriculum design will certainly help all of us
  3. 所属分类:OS Develop

    • 发布日期:2017-04-13
    • 文件大小:1664
    • 提供者:彦斌
  1. RandW

    0下载:
  2. 操作系统编程 读者写者问题 读者写者共用一个缓冲区 允许多个读者共同读 只允许一个写这写-OS reader and writer
  3. 所属分类:OS Develop

    • 发布日期:2017-04-02
    • 文件大小:1240
    • 提供者:liu
  1. readawrite

    0下载:
  2. 读者写者问题 同步互斥问题 操作系统 信号量-read and write
  3. 所属分类:OS Develop

    • 发布日期:2017-04-16
    • 文件大小:24097
    • 提供者:尹新钰
  1. 9

    0下载:
  2. 此源代码是用C编写,操作系统中的读者-写者问题,在学习操作系统的时候可以借鉴-This source code is written in C, the operating system the reader- writer problem, the time in learning the operating system can learn
  3. 所属分类:OS Develop

    • 发布日期:2017-04-06
    • 文件大小:1127
    • 提供者:梦泽天
  1. duzhexiezhe

    0下载:
  2. 读者写者问题 用c++编写的操作系统的读者写者问题,仅供参考-read and write
  3. 所属分类:OS Develop

    • 发布日期:2017-03-28
    • 文件大小:3737
    • 提供者:lj
  1. read

    0下载:
  2. 操作系统课程-读写者问题实验源代码,实现操作系统中的读者写者的问题-Operating systems courses- those who question the experimental source code to read and write
  3. 所属分类:OS Develop

    • 发布日期:2017-04-04
    • 文件大小:11651
    • 提供者:wang
  1. duzhexiezhe

    0下载:
  2. 对读者写者问题要能够动态实现读写过程,通过界面看到当前的读写状态。-wirter and reader
  3. 所属分类:OS Develop

    • 发布日期:2017-04-01
    • 文件大小:1668
    • 提供者:eric
« 1 23 4 »
搜珍网 www.dssz.com