CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - reader writer problem

搜索资源列表

  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. reader_and_writer

    0下载:
  2. 读者写者问题模拟的实现,vs2008开发环境,有助于理解windows下的多进程机制-the reader and writer problem
  3. 所属分类:Process-Thread

    • 发布日期:2017-05-11
    • 文件大小:2900948
    • 提供者:Jason
  1. code

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

    • 发布日期:2017-04-03
    • 文件大小:1718
    • 提供者:镡皓琳
  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. CWriterReader

    0下载:
  2. 用信号量来实现读者写者问题。 学习NachOS的使用方法 理解和运用信号量、PV原语、进程间的同步互斥关系等基本知识。 -Semaphores to implement the reader with a writer problem. Learning NachOS understanding and application of use of semaphores, PV primitives, synchronization between the mutually ex
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-23
    • 文件大小:10441
    • 提供者:kira
  1. read

    0下载:
  2. 本程序是一个描写读者-写者问题中的读者问题的程序,希望能帮助到你。-This program is a descr iption of the reader- writer problem in the program in question readers, hoping to help you.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-08
    • 文件大小:2544
    • 提供者:张三
  1. reader_writer.c

    0下载:
  2. 进程间通信中经典的读者-写者问题,用信号量实现同步和互斥。-Interprocess communication in the classic reader- writer problem, synchronization with semaphores and mutexes.
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-02
    • 文件大小:1416
    • 提供者:nescio
  1. Cpp2

    0下载:
  2. 读者写者问题,完成了读写者间的同步和不同读者的互斥,读者优先。-Reader writer problem
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:1951
    • 提供者:BBC
  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. reader-writer

    0下载:
  2. 用多线程解决读者-写者问题,实现读写互斥,写写互斥,读读同步。-Readers- write the problem of multi-threaded solution, to achieve read and write mutex, write mutex, read synchronization.
  3. 所属分类:Process-Thread

    • 发布日期:2017-05-10
    • 文件大小:2237231
    • 提供者:刘禹
  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. Database

    0下载:
  2. OS assignment Reader Writer problem in NAchos
  3. 所属分类:Project Design

    • 发布日期:2017-12-01
    • 文件大小:990
    • 提供者:sk
  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. PV

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

    • 发布日期:2017-05-07
    • 文件大小:1302834
    • 提供者:范琪
  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. readerwriter

    0下载:
  2. 读者写者问题C++解法,使用互斥信号量,写者线程优先,共有3个读者2个写者-Similar to the barbers problem,the program use semaphore to solve the reader/writer problem.Two semaphores are involved:m_h, h,used as a counter and mutex between 2 writers.Main function create 3 reader thread an
  3. 所属分类:Graph program

    • 发布日期:2017-04-12
    • 文件大小:861
    • 提供者:huia85njg33
  1. vnltructions

    0下载:
  2. 本程序实现读者-写者问题,采用WINDOWS API实现,有比较详细的程序说明-This procedure realize the reader- writer problem, using the WINDOWS API, there is a detailed programming instructions
  3. 所属分类:Applications

    • 发布日期:2017-12-16
    • 文件大小:8192
    • 提供者:pcrptn
  1. jhe

    0下载:
  2. 本程序实现读者-写者问题,采用WINDOWS API实现,有比较详细的程序说明-This procedure realize the reader- writer problem, using the WINDOWS API, there is a detailed programming instructions
  3. 所属分类:File Operate

    • 发布日期:2017-12-15
    • 文件大小:8192
    • 提供者:Doxatz
  1. mmwkiic

    0下载:
  2. 本程序实现读者-写者问题,采用WINDOWS API实现,有比较详细的程序说明(This procedure realize the reader - writer problem, using the WINDOWS API, there is a detailed programming instructions)
  3. 所属分类:文件操作

    • 发布日期:2017-12-21
    • 文件大小:8192
    • 提供者:Woodrpq
  1. wrlterreader

    0下载:
  2. 本程序实现读者-写者问题,采用WINDOWS API实现,有比较详细的程序说明(This procedure realize the reader - writer problem, using the WINDOWS API, there is a detailed programming instructions)
  3. 所属分类:按钮控件

    • 发布日期:2017-12-16
    • 文件大小:8192
    • 提供者:cydlo
« 1 23 »
搜珍网 www.dssz.com