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

搜索资源列表

  1. 11

    1下载:
  2. 操作系统课程设计,实现读者与写者问题,我的心血呀
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:3668
    • 提供者:xiacao
  1. czxt

    1下载:
  2. 操作系统的课程设计,关于读者与写者问题,采用多线程解决
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:124458
    • 提供者:姚春萌
  1. Reader-Writer

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

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

    0下载:
  2. 在Windows 2000/XP/2003环境下,创建一个包含N个线程的控制台进程。用这n个线程来表示n个读者或写者。每个线程按相应测试数据文件(后面有介绍)的要求进行读写操作。用信号量机制分别实现读者优先和写者优先的读者一写者问题。-Windows 2000/XP/2003 environment, the creation of an N threads include the console process. Use of these n threads to express n read
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:10008
    • 提供者:白潘恩
  1. duzhe

    0下载:
  2. 利用windows提供的mfc 编写的读者写者的同步互斥问题问题-Mfc windows provide written by readers who write the synchronization problem of Mutual Exclusion
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-03
    • 文件大小:1952
    • 提供者:谢天仇
  1. readwrite

    0下载:
  2. 读者-写者问题(Courtois et al., 1971) 读者-写者问题为数据库访问建立了一个模型。例如,一个系统,其中有许多竞争的进程试图读写其中的数据,多个进程同时读是可以接受的,但如果一个进程正在更新数据库,则所有的其他进程都不能访问数据库,即使读操作也不行。问题是:如何对读者和写者进行编程。 -ipc computer system reader-writer problem
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-26
    • 文件大小:16258
    • 提供者:
  1. documents-for-Linux-

    0下载:
  2. Linux 多进程编写详细资料与算法总结 包含 读者-写者 等经典问题-Multiple Linux processes and algorithms written summary containing details of readers- those who write such classic problems
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-29
    • 文件大小:264991
    • 提供者:ming
  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. reader_and_writer

    0下载:
  2. 操作系统中,读者和写者问题的解决方案。调用windows API函数,清晰明了。-Operating system, readers and writers solution to the problem. Call the windows API function, clarity.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-14
    • 文件大小:3896
    • 提供者:thunder sea
  1. RandW

    0下载:
  2. 读者写者进程同步问题解决方案,利用临界区,信号量来实现进程或者线程同步-Reader-writer synchronization process solutions, using the critical area, the signal values in order to achieve the process or thread synchronization
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-30
    • 文件大小:2994
    • 提供者:
  1. 2_2

    0下载:
  2. 使用信号量实现读进程具有优先权的读者和写者问题-use the signal to realize the problem
  3. 所属分类:OS Develop

    • 发布日期:2017-04-01
    • 文件大小:1271
    • 提供者:ziyou
  1. Reader_and_Writer

    0下载:
  2. 操作系统中读者写者算法的实现,涉及到系统互斥资源的争用和释放问题,初学者可以参考-Readers to write the operating system the realization of those algorithms, involving mutual exclusion of resources to the system and the release of contention issues, beginners can refer to
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-02
    • 文件大小:911308
    • 提供者:wc
  1. solutionofreader-writerproblem

    0下载:
  2. 解决读者-写者多线程同步问题,在Windows环境下运用Visual C++ 6.0实现。-Address the reader- writer multithreading synchronization problems in Windows environment using Visual C++ 6.0 to achieve.
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-14
    • 文件大小:5354
    • 提供者:小贺
  1. readerwriter

    0下载:
  2. 在Linux下用多线程同步方法解决读者-写者问题(Reader-Writer Problem) -In Linux, use the multi-thread synchronization solution to the reader- writer problem (Reader-Writer Problem)
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-27
    • 文件大小:113373
    • 提供者:孙芸芸
  1. operating-system

    0下载:
  2. 读者与写者问题的线程实现和进程实现,这是我大三操作系统课程设计源代码-Reader and writer thread implementation issues and processes to achieve, this is my third year courses on operating system design source code
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-26
    • 文件大小:18979
    • 提供者:zhaoyibin
  1. dx

    0下载:
  2. 利用Windows提供的MFC类编程实现读者/写者的同步互斥问题,保证:1)一个人在写时,其他人不允许写;2)一个人在写时,其他人不允许读;3)一个人在读时,其他人不允许写;4)一个人在读时,其他人允许读。-MFC classes provided by Windows programming reader/writer mutual exclusion synchronization to ensure that: 1) When a person writes, others are not
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-04
    • 文件大小:1291
    • 提供者:eleven
  1. duzhe

    0下载:
  2. 读者写者单缓冲,vc编程,操作系统经典问题 文件名包括:debug thread 读者写者(单缓冲) exe运行文件-writer and reader problem
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-06
    • 文件大小:1315251
    • 提供者:沈佳
  1. test2005

    0下载:
  2. 操作系统课程设计的读者和写者问题的源代码-read and wite problems
  3. 所属分类:Education soft system

    • 发布日期:2017-05-12
    • 文件大小:2831229
    • 提供者:伊筱若
  1. Reader-Writer_Problem)

    0下载:
  2. 用多线程同步方法解决读者-写者问题。为每个读者/写者产生一个线程,设计正确的同步算法-With multi-thread synchronization methods to solve the reader- writer problem. For each reader/writer to produce a thread, correct synchronization algorithm design
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-30
    • 文件大小:169276
    • 提供者:nieyuanhao
  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 2 ... 6 7 8 9 10 1112 13 »
搜珍网 www.dssz.com