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

搜索资源列表

  1. OS

    0下载:
  2. 在Windows2000环境下,创建一个控制台进程,此进程包含n个线程。用这n个线程来表示n个读者或写者。每个线程按相应测试数据文件(后面介绍)的要求进行读写操作。用信号量机制分别实现读者优先和写者优先问题。 读者-写者问题的读写操作限制(包括读者优先和写者优先) 1) 写-写互斥:不能有两个写者同时进行写操作 2) 读-写互斥:不能同时有一个线程在读,而另一个线程在写。 3) 读-读允许:可以有一个或多个读者在读。 读者优先的附加限制:如果读者申请进行读操作时已有另一个读者
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-01
    • 文件大小:80224
    • 提供者:夏芝亮
  1. read-writer

    0下载:
  2. 操作系统课程设计实验,用于解决读者写者问题的程序代码,可以直接运行-Courses on operating system design experiments to solve the readers to write the code, you can run directly
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-05
    • 文件大小:2163
    • 提供者:高青
  1. ReaderWriter(1)

    0下载:
  2. 实现读者写者问题,用的是java程序,读懂6个JAVA程序段和一个HTML文件-Readers who write java program, to read six JAVA block and an HTML file
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-28
    • 文件大小:22024
    • 提供者:wunan
  1. ReadandWrite

    0下载:
  2. windows操作系统内核实验。读者写者问题。创建一个控制台进程。此进程包含n个线程。用这n个线程来表示n个读者或写者。每个线程按相应测试数据文件要求进行读写操作。用信号量机制分别实现读者优先和写者优先的读者-写者问题。-windows operating system kernel experiment. Readers who write. Create a console process. This process contains n threads. With n threads n
  3. 所属分类:File Operate

    • 发布日期:2017-11-12
    • 文件大小:2965
    • 提供者:绫子
  1. Reader-Writer

    0下载:
  2. 这是一个用C语言编写的读者写者问题的程序。程序自带进程号和开始时间、执行时间,运行后,显示进程执行效果。-This is a written in C readers who write the program problem. Program own process number and start time, execution time, after the operation, display process execution effect.
  3. 所属分类:Process-Thread

    • 发布日期:2017-11-09
    • 文件大小:278636
    • 提供者:邓扬
  1. test2

    0下载:
  2. 仿真模拟读者写者问题,采用信号量机制,用时间片轮转方法调度进程-Simulation readers who write semaphore mechanism, with round-robin scheduling process
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-20
    • 文件大小:1801
    • 提供者:long
  1. reader_writer-problem

    0下载:
  2. 多线程编程练习,使用信号量机制解决同步问题,本程序解决读者写者问题,操作系统实验。 -The multithreaded programming exercises using semaphore mechanism to solve the synchronization problem, solve the readers who wrote in the program, experimental operating system.
  3. 所属分类:Process-Thread

    • 发布日期:2017-11-15
    • 文件大小:66802
    • 提供者:linyu
  1. reader-writer

    0下载:
  2. 这是一个典型的进程同步问题-读者写者问题,次程序直观的显示读写者问题的处理过程,便于初学者学习-This is a typical process synchronization problem- readers to write, read and write times by visual display of the program' s handling process, easy for beginners to learn
  3. 所属分类:Other systems

    • 发布日期:2017-04-10
    • 文件大小:1544733
    • 提供者:李凌云
  1. zhe-reader-zhe-writer

    1下载:
  2. 多进程/线程编程:读者-写者问题。      1,设置两类进程/线程,一类为读者,一类为写者;   2,随机启动读者或写者;  3,显示读者或写者执行状态;  4,随着进程/线程的执行,更新显示;  -Multi-process/thread programming: Readers- write the problem. 1, set two types of processes/threads, o
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-30
    • 文件大小:13619
    • 提供者:刘禹
  1. rw1

    0下载:
  2. 操作系统中的读者写者问题,实现了写者优先。-Readers to write in the operating system were the problem, to achieve the writing is preferred.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-24
    • 文件大小:360912
    • 提供者:whicme
  1. rw1

    0下载:
  2. 操作系统中的读者写者问题,实现了写者优先。-Readers to write in the operating system were the problem, to achieve the writing is preferred.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-25
    • 文件大小:360959
    • 提供者:Carneys
  1. rw

    0下载:
  2. 经典读者写者问题的C++代码实现,代码在这里,来拿吧-Classic problem C++ readers to write code, code here, come and collect it
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:1366
    • 提供者:何佳存
  1. PV

    1下载:
  2. 基于信号量与P/V操作同步机制的读者/写者问题的设计与实现 (1)设置读者、写者个数输入(界面);实现读者、写者进程的动态创建; (2)用信号量与P/V操作同步机制实现写者优先的读者/写者问题。 (3)设计并实现运行结果(界面)包括: 动态显示多个读者或一个写者的读/写操作互斥状态: 显示正在进行读或写操作的进程,以及等待读或写操作的进程; 动态显示写者优先的过程: 即当有读者进程在读时,有写者进程要求写操作,后续的读者进程应该等待;并且当读操作的读者进程结束读操作
  3. 所属分类:Other systems

    • 发布日期:2017-05-07
    • 文件大小:1302834
    • 提供者:范琪
  1. writefirst

    0下载:
  2. 读进程具有优先权的读者写者问题,操作系统实验二-Reading process has priority readers to write
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-10
    • 文件大小:1201
    • 提供者:nego
  1. wr

    0下载:
  2. 利用mfc动态实现的os中的读者写者问题,具有参考意义-Dynamic use mfc achieve os readers to write in with a reference value
  3. 所属分类:GUI Develop

    • 发布日期:2017-05-11
    • 文件大小:2349710
    • 提供者:wp
  1. WR

    0下载:
  2. 创建一个控制台进程。此进程包含n个线程。用这n个线程来表示n个读者或写者。每个线程按相应测试数据文件(后面有介绍)的要求进行读写操作。用信号量机制分别实现读者优先和写者优先的读者-写者问题。-Create a console process. This process consists of n threads. Use of these n threads to express n readers who write. Each thread according to the corresp
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-13
    • 文件大小:2137
    • 提供者:Jschicking
  1. exp2RW

    0下载:
  2. 创建一个控制台进程。此进程包含n个线程。用这n个线程来表示n个读者或写者。每个线程按相应测试数据文件(后面有介绍)的要求进行读写操作。用信号量机制分别实现读者优先和写者优先的读者-写者问题。 读者-写者问题的读写操作限制(包括读者优先和写者优先): 1)写-写互斥,即不能有两个写者同时进行写操作。 2)读-写互斥,即不能同时有一个线程在读,而另一个线程在写。 3)读-读允许,即可以有一个或多个读者在读。 读者优先的附加限制:如果一个读者申请进行读操作时已有另一个读者
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-29
    • 文件大小:1594
    • 提供者:lei
  1. Reader_First

    0下载:
  2. 我是编程小菜鸟 - -,这个是俺上课编的读者写者问题的读者优先,使用线程,欢迎批评!- I was programming a small rookie This is the class I series readers to write readers priority issues, the use of threads, welcome criticism! So when debugging multithreaded mode must be selected.
  3. 所属分类:Process-Thread

    • 发布日期:2017-05-13
    • 文件大小:2757129
    • 提供者:李宜核
  1. Writer_First

    0下载:
  2. 我是编程小菜鸟0.0 这是是OS课时模拟的读者写者问题的写者优先,使用线程,调试时须选择多线程方式。欢迎批评!- I was programming a small rookie 0.0 This is at OS simulation class readers-writers problem who write priority, the use of threads, shall multi-thread debugging. Welcome to criticize!
  3. 所属分类:Process-Thread

    • 发布日期:2017-05-09
    • 文件大小:1916227
    • 提供者:李宜核
  1. reader-and-writer

    0下载:
  2. 操作系统经典问题读者写者问题,包含读者进出与写者进出,实现中断模拟-OS classic problem of readers to write the problem, including the readers who wrote in and out and out and achieve interrupt simulation
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-30
    • 文件大小:265236
    • 提供者:
« 1 2 3 4 56 7 8 »
搜珍网 www.dssz.com