搜索资源列表

  1. 0029

    0下载:
  2. 操作系统中读者写者问题拟操作系统里实现读者-写者问题的程序实例。用vc++编写,直接打开工程文件即可调试-OS readers to write to the problem of the operating system, achieving readers - who wrote the program examples. Vc with the preparation, direct project documents can b
  3. 所属分类:CA认证

    • 发布日期:2008-10-13
    • 文件大小:8706
    • 提供者:国威
  1. 信号量sem

    0下载:
  2. 这是自己写的一个关于经典ipc问题-读者写者的实现。(用信号量实现)-this is the one to write his classic IPS on the issue-the readers to write to achieve. (Using signal capacity achieved)
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:2774
    • 提供者:梁立平
  1. 读者写者模拟

    0下载:
  2. 模拟操作系统里实现读者-写者问题的程序实例。用vc++编写,直接打开工程文件即可调试。-operating system simulation, achieving readers - who wrote the program examples. Vc with the preparation, direct project documents can be opened debugging.
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:86107
    • 提供者:王东
  1. 读者写者模拟

    0下载:
  2. 模拟操作系统里实现读者-写者问题的程序实例。用vc++编写,直接打开工程文件即可调试。-operating system simulation, achieving readers- who wrote the program examples. Vc with the preparation, direct project documents can be opened debugging.
  3. 所属分类:进程与线程

    • 发布日期:2024-05-22
    • 文件大小:86016
    • 提供者:王东
  1. 0029

    0下载:
  2. 操作系统中读者写者问题拟操作系统里实现读者-写者问题的程序实例。用vc++编写,直接打开工程文件即可调试-OS readers to write to the problem of the operating system, achieving readers- who wrote the program examples. Vc with the preparation, direct project documents can be
  3. 所属分类:CA认证

    • 发布日期:2024-05-22
    • 文件大小:8192
    • 提供者:国威
  1. 操作系统课程设计报告及原代码

    0下载:
  2. 通过实现经典的读者写者问题,巩固对线程及其同步机制的学习效果,加深对相关基本概念的理解,并学习如何将基本原理和实际设计有机的结合。-through the realization of the classic problem of readers to write, and the consolidation of thread synchronization mechanism of the study results, relate
  3. 所属分类:教育/学校应用

    • 发布日期:2024-05-22
    • 文件大小:215040
    • 提供者:晨风
  1. 信号量sem

    0下载:
  2. 这是自己写的一个关于经典ipc问题-读者写者的实现。(用信号量实现)-this is the one to write his classic IPS on the issue-the readers to write to achieve. (Using signal capacity achieved)
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-22
    • 文件大小:2048
    • 提供者:梁立平
  1. windows_reader_writer

    0下载:
  2. 线程的读者优先与写者优先。创建一个控制台进程,此进程包含n个线程。用这n个线程来表示n个读者或写者。每个线程按相应测试数据文件进行读写操作。用信号量机制分别实现读者优先和写者优先的读者写者问题。-priority threads with the readers who wrote priority. The process of creating a console, this process contain n threads. U
  3. 所属分类:进程与线程

    • 发布日期:2024-05-22
    • 文件大小:8192
    • 提供者:
  1. chaozuoxintong

    0下载:
  2. 读者写者问题课程设计.具有详细的流程.实验结果及其截图-Readers to write the issue of curriculum design. A detailed flow. The experimental results and screenshots
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-22
    • 文件大小:65536
    • 提供者:wj
  1. operation

    0下载:
  2. 在linux环境下实现操作系统的读者-写者问题.读者写者随机访问.-In linux operating system environment to achieve the readers- to write the problem. Readers who write random access.
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-22
    • 文件大小:172032
    • 提供者:sara
  1. reader-writer

    0下载:
  2. 解决读者-写者的想法: 就是所谓的”忙等待“。一个进程(线程)要使用某个资源,先看能否满足”一定要求“,能,就使用, 不能就等待直到这个要求满足为止。 -Solve the readers- the idea of writing: the so-called " busy waiting." A process (thread) to use a resource, look at the can m
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-22
    • 文件大小:1024
    • 提供者:谢雨
  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编程

    • 发布日期:2024-05-22
    • 文件大小:113664
    • 提供者:孙芸芸
  1. readwrite

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

    • 发布日期:2024-05-22
    • 文件大小:16384
    • 提供者:
  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. 所属分类:进程与线程

    • 发布日期:2024-05-22
    • 文件大小:168960
    • 提供者:nieyuanhao

源码中国 www.ymcn.org