CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - 线程同步

搜索资源列表

  1. The-problem-of-product-and-consume

    0下载:
  2. 生产者-消费者问题是一个经典的进程同步问题,该问题最早由Dijkstra提出,用以演示他提出的信号量机制。在同一个进程地址空间内执行的两个线程。生产者线程生产物品,然后将物品放置在一个空缓冲区中供消费者线程消费。消费者线程从缓冲区中获得物品,然后释放缓冲区。当生产者线程生产物品时,如果没有空缓冲区可用,那么生产者线程必须等待消费者线程释放出一个空缓冲区。当消费者线程消费物品时,如果没有满的缓冲区,那么消费者线程将被阻塞,直到新的物品被生产出来。-The producer- consumer qu
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-29
    • 文件大小:1050
    • 提供者:岳豪
  1. 08281018_ShenChaobo_lab02

    0下载:
  2. 讨论临界区问题及其解决方案。实验首先创建两个共享数据资源的并发线程。在没有同步控制机制的情况下,实验过程中会发现某些异常现象。针对观察到的现象,请分别采用以下两套不同的解决方案: (1) 利用Windows操作系统提供的mutex机制。 (2) 采用软件方案。 最后请比较这两种方案的性能优劣。 -Discuss problems and solutions critical region. Experiment first to share data resources to c
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-29
    • 文件大小:100874
    • 提供者:申超波
  1. chat-room

    0下载:
  2. 多线程程序的编写,多线程应用中容易出现的问题。互斥对象的讲解,如何采用互斥对象来实现多线程的同步。如何利用命名互斥对象保证应用程序只有一个实例运行。应用多线程编写网络聊天室程序。-The preparation of multi-threaded programs, multi-threaded applications prone to problems. Mutex object to explain how to use mutex objects to multi-thread sync
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-24
    • 文件大小:375858
    • 提供者:huaminggong
  1. VCprogress

    0下载:
  2. VC_6_0下利用互斥量同步线程来实现文件读取进度条-VC_6_0 under the use of mutex thread synchronization to achieve the file to read the progress bar
  3. 所属分类:GUI Develop

    • 发布日期:2017-05-17
    • 文件大小:4102849
    • 提供者:forgy
  1. C_SOCKET

    0下载:
  2. 同步异步SOCKET通讯和多线程总结.doc-Synchronous communication and asynchronous multi-threaded summary SOCKET. Doc
  3. 所属分类:Communication

    • 发布日期:2017-04-02
    • 文件大小:11420
    • 提供者:郑云
  1. liaotian

    0下载:
  2. 多线程与聊天室程序的编写,多线程应用中容易出现的问题。互斥对象的讲解,如何采用互斥对象来实现多线程的同步。如何利用命名互斥对象保证应用程序只有一个实例运行。-Multithreaded program written with the chat room, multi-threaded applications prone to problems. Mutex object to explain how to use mutex objects to multi-thread synchroni
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-07
    • 文件大小:41491
    • 提供者:px
  1. semaphore

    0下载:
  2. 信号量(Semaphore)也被称为信号灯,常常作为在多线程环境下的同步与互斥机制。它负责协调各个线程,以保证它们能够正确、合理的使用公共资源。信号量分为单值和多值两种。单值信号量只能被一个线程获得,而多值信号量可以被若干个线程获得。 本实验是一个信号量实验,父进程作为生产者释放信号量,子进程作为消费者申请信号量。 实验环境 Redhat9.0-Semaphore (Semaphore), also known as signal lights, often in multi-th
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-31
    • 文件大小:962
    • 提供者:tiger
  1. 02

    0下载:
  2. 进程的基本概念 进程控制 进程同步 经典进程的同步问题 管程机制 进程通信 线程 -Process, the process of the basic concepts of process control the synchronization of classical process synchronization process mechanism for process communication pipe thread
  3. 所属分类:Process-Thread

    • 发布日期:2017-05-02
    • 文件大小:714203
    • 提供者:zixialang
  1. example

    0下载:
  2. wait-notify机制的应用 不同步时引出的问题 继承基类的实现 实现接口的实现 同步方法的实现 同步块的实现 线程管理池 -wait-notify mechanism of the application does not sync issues arising from the base class implementation inheritance to achieve synchronization interface methods to achiev
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-06
    • 文件大小:14847
    • 提供者:yy
  1. Multithreaded-programming-tutorial

    0下载:
  2. 这是一个很好的多线程编程教程,作者是韩耀旭。 全文分为四个篇幅: 一、多线程问题提出 二、MFC多线程编程 三、线程的通讯 四、线程的同步 -This is a good multi-thread programming tutorial, the author is Han Yaoxu. Text is divided into four length: one, two multi-threading issues, MFC multi-threaded programm
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-30
    • 文件大小:346711
    • 提供者:ailink
  1. ReadFile

    0下载:
  2. 在Visual C++ 6.0下利用互斥量同步线程来实现文件读取进度条-In Visual C++ 6.0 under simultaneous threads using mutex to achieve the progress of the file read
  3. 所属分类:GUI Develop

    • 发布日期:2017-04-15
    • 文件大小:39915
    • 提供者:
  1. Example057

    0下载:
  2. Visual C++ 6.0下利用互斥量同步线程来实现文件读取进度条的程序源码,感兴趣的可以参考下-Visual C++ 6.0 under the thread synchronization using mutex to achieve the progress of the document read program source code, can refer interested
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-05
    • 文件大小:24116
    • 提供者:方胜鹏
  1. Produce Consume

    1下载:
  2. 通过互斥量、事件来解决生产者和消费者的问题,主要涉及的内容有多线程的创建,事件的创建,互斥量的创建,线程的同步。主要的函数有:CreateThread,CreateEvent,CreateMutex,WaitForMultipleObjects等。-Through the mutex, event producers and consumers to solve problems, mainly related to the contents of multiple thread creatio
  3. 所属分类:Windows编程

    • 发布日期:2013-04-10
    • 文件大小:2906
    • 提供者:李明
  1. Ch13Demo3-User-Inter

    0下载:
  2. 多线程编程例程之三,线程的同步,通信,创建,安全退出。-The third multi-threaded programming routines, thread synchronization, communication, creation, security exit.
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-06
    • 文件大小:43636
    • 提供者:郭大万
  1. producers-and-consumers-

    0下载:
  2. 一个或多个生产者消费者实现线程间的同步、互斥 使用AND型信号量-One or more producers and consumers to achieve synchronization between threads, mutual exclusion semaphores with the AND-type
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-30
    • 文件大小:3433
    • 提供者:陈蓝
  1. J2meMultipThread

    0下载:
  2. j2me多线程编程,演示了j2me 多线程编程所有步骤,以及线程之间同步,异步工作。适合大家参考j2me多线程编程-j2me multithreading programming, multithreaded programming j2me demonstrated all the steps, and synchronization between threads, asynchronous work. For your reference j2me multi-threaded progr
  3. 所属分类:J2ME

    • 发布日期:2017-04-17
    • 文件大小:296477
    • 提供者:ox
  1. SemaphoreThreadSyn

    0下载:
  2. vc 使用信号量(Semaphore)实现线程的同步\SemaphoreThreadSyn的程序源码,希望对大家有所帮助-vc using semaphores (Semaphore) to achieve thread synchronization \ SemaphoreThreadSyn the program source code, we hope to help
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-04
    • 文件大小:26536
    • 提供者:吴菲菲
  1. Hanoi

    0下载:
  2. C#写的动态显示汉诺塔移动过程的小程序。使用了线程技术,同步技术。-write in C#, display the moving procedure of the Tower of Hanoi. The use of threading, synchronization.
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:43018
    • 提供者:slowbird2
  1. SemaphoreThreadSyn

    0下载:
  2. vc——使用信号量(Semaphore)实现线程的同步\SemaphoreThreadSyn的程序源码,值得一看!-vc- using semaphores (Semaphore) to achieve thread synchronization \ SemaphoreThreadSyn the program source code, worth a visit!
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-04
    • 文件大小:27150
    • 提供者:
  1. SemaphoreThreadSyn

    0下载:
  2. vc——使用信号量(Semaphore)实现线程的同步\SemaphoreThreadSyn的程序源码,值得一看!-vc- using semaphores (Semaphore) to achieve thread synchronization \ SemaphoreThreadSyn the program source code, worth a visit!
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-05
    • 文件大小:27774
    • 提供者:何成立
« 1 2 ... 30 31 32 33 34 3536 37 38 39 40 ... 44 »
搜珍网 www.dssz.com