搜索资源列表

  1. EX5

    0下载:
  2. 用Win32所提供的同步对象实现自己的P、V,并解决读者-写者问题-Use Win32 synchronization objects provided by the realization of their P, V, and address the reader- writer problem
  3. 所属分类:Windows编程

    • 发布日期:2024-05-17
    • 文件大小:2048
    • 提供者:Nancy
  1. ReaderandWriter

    0下载:
  2. 读者写者问题的分析演示,多线程分配,程序短小实用-Readers write the analysis of the problem of presentation, multi-threaded allocation, short practical procedures
  3. 所属分类:进程与线程

    • 发布日期:2024-05-17
    • 文件大小:1024
    • 提供者:陈志强
  1. Reader_Writer

    0下载:
  2. 操作系统中的读者写者问题算法.该算法为为读者优先。-Reader-Writer problem algorithm in the operating system
  3. 所属分类:Windows编程

    • 发布日期:2024-05-17
    • 文件大小:13312
    • 提供者:陈平君
  1. writepriority

    0下载:
  2. 写优先的读者写者问题,使用共享内存,多个信号量实现。-writer and reader
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-17
    • 文件大小:2048
    • 提供者:孟军
  1. xianchengthread

    0下载:
  2. 在Windows 2000 环境下,创建一个包含n 个线程的控制台进程。用这n 个线程来表示n个读者或写者。每个线程按相应测试数据文件的要求,进行读写操作。请用信号量机制分别实现读者优先和写者优先的读者-写者问题。-In Windows 2000 environment, create a console that contains the process of n threads. N threads with which to e
  3. 所属分类:系统编程

    • 发布日期:2024-05-17
    • 文件大小:514048
    • 提供者:zsb
  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. 所属分类:操作系统开发

    • 发布日期:2024-05-17
    • 文件大小:381952
    • 提供者:jjc
  1. bingFa

    0下载:
  2. 在linux环境下,使用多线程和信号量机制实现经典的读者写者问题-In the linux environment, using multiple threads and semaphore mechanism to bring readers to write the problem of classic
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-17
    • 文件大小:6144
    • 提供者:付言叶
  1. duzheyuxizhe

    0下载:
  2. 读者-写者问题的读写操作限制(包括读者优先和写者优先) 1) 写-写互斥:不能有两个写者同时进行写操作 2) 读-写互斥:不能同时有一个线程在读,而另一个线程在写。 3) 读-读允许:可以有一个或多个读者在读。 读者优先的附加限制:如果读者申请进行读操作时已有另一个读者正在进行读操作,则该读者可直接开始读操作。 写者优先的附加限制:如果一个读者申请进行读操作时已有另一个写者在等待访问共享资源,则该读者必须等到没有写者
  3. 所属分类:其它源码

    • 发布日期:2024-05-17
    • 文件大小:2048
    • 提供者:蒲春旭
  1. OS_ReaderWriter

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

    • 发布日期:2024-05-17
    • 文件大小:3072
    • 提供者:袁昊
  1. readerwirter

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

    • 发布日期:2024-05-17
    • 文件大小:3072
    • 提供者:lianjx
  1. reader_writer

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

    • 发布日期:2024-05-17
    • 文件大小:30720
    • 提供者:zhao
  1. 1writer_reader

    0下载:
  2. 实现经典的读者-写者问题,在Linux环境下实现的,gcc编译通过-To achieve the classic readers- those issues, achieved under the Linux environment, gcc compiler
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-17
    • 文件大小:1024
    • 提供者:黄参
  1. reader_and_writer

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

    • 发布日期:2024-05-17
    • 文件大小:2900992
    • 提供者:Jason
  1. code

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

    • 发布日期:2024-05-17
    • 文件大小:2048
    • 提供者:镡皓琳
  1. readerwriter

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

    • 发布日期:2024-05-17
    • 文件大小:122880
    • 提供者:镡皓琳
  1. OS-duxie-duoxianchen

    0下载:
  2. 操作系统读者写者问题的多线程实现,在读者优先的条件下模拟多个读者写者的对缓冲区的使用情况。-Persons operating system readers to write multi-threaded implementation of the priority conditions in the simulation of readers more than readers who write the buffer usage.
  3. 所属分类:进程与线程

    • 发布日期:2024-05-17
    • 文件大小:2048
    • 提供者:张立
  1. 3-2

    0下载:
  2. 操作系统经典问题——读者写者问题VC 6.0源码-Classic problem of the operating system- readers to write source code VC 6.0 persons
  3. 所属分类:Windows编程

    • 发布日期:2024-05-17
    • 文件大小:2048
    • 提供者:
  1. tongbuhuchi

    0下载:
  2. 实现并发线程之间的同步和互斥问题 解决一类典型的进程间同步问题,如生产者-消费者问题,读者-写者问题等-To achieve synchronization between concurrent threads and the mutex problem solving process of a class of synchronization between the typical problems, such as the pr
  3. 所属分类:进程与线程

    • 发布日期:2024-05-17
    • 文件大小:8192
    • 提供者:
  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. 所属分类:软件工程

    • 发布日期:2024-05-17
    • 文件大小:62464
    • 提供者:沈佳
  1. reader_writer

    0下载:
  2. 操作系统作业,多线程读者写者问题,C语言,Linux-Reader and writer, multi-threaded issues, C language, Linux
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-17
    • 文件大小:1024
    • 提供者:瑞舞
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 16 17 »

源码中国 www.ymcn.org