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

搜索资源列表

  1. fig16_09_10_synchronized

    0下载:
  2. 生产者消费者线程同步问题,运用了接口,以及抽象类,线程同步来实现。-consumer and producer
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-03
    • 文件大小:8172
    • 提供者:sarah
  1. EventThreadSyn

    0下载:
  2. 一个使用CEvent对象实现线程同步的例程,来自于Visual C++范例大全-CEvent an object implementation using the thread synchronization routines, from the Visual C++ examples of Daquan
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-03
    • 文件大小:33355
    • 提供者:ladeng
  1. CriticalSecitonThreadSyn

    0下载:
  2. 一个使用临界区对象(CriticalSeciton)实现线程同步的例程,来自于Visual C++范例大全-The use of a critical section object (CriticalSeciton) to achieve thread synchronization routines, from the Visual C++ examples of Daquan
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-02
    • 文件大小:34818
    • 提供者:ladeng
  1. comcommu

    0下载:
  2. 针对现在工业监控中的缺乏多路串口同时监测的手法,通过开辟多线程以及线程同步解决了多串口同时监测的问题-Intended for industrial monitoring and control in the absence of multi-channel serial port simultaneously monitor the way, through the creation of multi-threading and thread synchronization to solve
  3. 所属分类:Windows Kernel

    • 发布日期:2017-05-26
    • 文件大小:9008939
    • 提供者:于禾
  1. MultiThread

    0下载:
  2. 加入线程同步的多线程应用实例程序,比较简单-Add thread synchronization application examples of multi-threaded program, is relatively simple
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-04
    • 文件大小:1215914
    • 提供者:111
  1. RandW

    0下载:
  2. 读者写者进程同步问题解决方案,利用临界区,信号量来实现进程或者线程同步-Reader-writer synchronization process solutions, using the critical area, the signal values in order to achieve the process or thread synchronization
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-30
    • 文件大小:2994
    • 提供者:
  1. Example11_11

    0下载:
  2. 一个线程同步的简单例子,通过对同一个帐本的会计与出纳设定线程访问。-A simple example of thread synchronization, through the books on the same set of accounting and cashier thread access.
  3. 所属分类:Java Develop

    • 发布日期:2017-04-10
    • 文件大小:1017
    • 提供者:chen
  1. W1

    0下载:
  2. 线程同步,采用mutex实现! 其中还含有泛型编程Ttest类! 可以下载,在VS2008可以执行。-thread sync
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-31
    • 文件大小:592470
    • 提供者:邓正伟
  1. OS

    0下载:
  2. 操作系统关于线程同步的实验,生产消费问题的模拟。-The operating system on the thread synchronization experiments, simulation of production and consumption issues.
  3. 所属分类:Process-Thread

    • 发布日期:2017-05-15
    • 文件大小:3640451
    • 提供者:boarbing
  1. duoxianchengtongbu

    0下载:
  2. 事件内核对象、关键代码段(临界区)的讲解,以及在多线程同步中的应用。在Windows下编写基于消息的网络应用程序,掌握阻塞与非阻塞网络程序的编写,理解在Windows平台下,采用异步选择机制可以提高网络应用程序的性能。-The event kernel object, the key code segment (critical zone) explanations, and synchronization in a multi-threaded applications. Prepared u
  3. 所属分类:Other systems

    • 发布日期:2017-05-14
    • 文件大小:3122952
    • 提供者:黄涛
  1. Win32MultiThread_Event

    0下载:
  2. Event是windows32线程同步中的重要部分,该程序可以帮您理解Event的使用包括automatic模式manual模式下的setevent、pulseevent、resetevent的使用等。-Event is a thread synchronization in windows32 an important part of the program can help you understand the use of Event, including automatic mode m
  3. 所属分类:Process-Thread

    • 发布日期:2017-05-04
    • 文件大小:1205867
    • 提供者:Jerry
  1. ThreadSyncExample

    0下载:
  2. 在多线程中操作VCL对象时,需Synchronize到主线程,否则可能引起“Canvas does not allow drawing”异常。这是一个的线程同步例子,同时放了2种代码,可对照理解Synchronize的作用。-It s an example about how to operate VCL object in multithread. Use "Synchronize" To avoid "Canvas does not allow drawing" exception.
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-30
    • 文件大小:201967
    • 提供者:waters
  1. PROSUM

    0下载:
  2. 编程实现生产者-消费者问题。提示:生产者-消费者问题是一个实现线程同步的问题,生产者线程总是先运行,消费者线程在其后,两者交替运行,在程序中生产者线程和消费者线程可以共享数据,生产者线程为数据赋值,消费者线程将数据返回。可以利用创建Thread类的子类来实现。-Programming producer- consumer issues. Tip: Producer- Consumer problem is an implementation of thread synchronization
  3. 所属分类:Other systems

    • 发布日期:2017-04-14
    • 文件大小:4830
    • 提供者:朱蓉
  1. CMutex

    0下载:
  2. vc6下实现的多线程同步例子。本例很好的说明多线程同步方法的使用。同步方法是互斥体,使用的是mfc中互斥对象,简单易用很适合初学线程控制学习。
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-29
    • 文件大小:20096
    • 提供者:立方
  1. Producer_Consumer

    0下载:
  2. Windows线程同步技术编程程序源代码,经典的线程同步技术-Thread
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-03
    • 文件大小:41981
    • 提供者:曾海
  1. xctb

    0下载:
  2. 线程同步,线程之间如何进行同步,如何协调的最佳历程-Thread synchronization, how to synchronize between threads, how to coordinate the best course of
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-05
    • 文件大小:28136
    • 提供者:Jerry
  1. ThreadSyncSample

    0下载:
  2. NSCondition , 多线程 同步 例子 运用于某个线程要等待若干个线程完成后再开始执行的情境, iphone的多线程开发是比较困难的地方-NSCondition, an example applied to a multi-thread synchronization thread to wait several months to complete before starting the implementation of the thread contexts, iphone m
  3. 所属分类:iPhone

    • 发布日期:2017-03-27
    • 文件大小:20772
    • 提供者:suruiqiang
  1. 4xiazai

    0下载:
  2. 四线程同步下载程序。可以用于下载文件比较大的情况下-Four-thread synchronization download. You can download the file for the case of larger
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-25
    • 文件大小:277728
    • 提供者:yaoxiang
  1. ThreadSynchronizationevent

    0下载:
  2. 线程同步之事件对象,希望能给初学者提供帮助-The event thread synchronization object, could provide help for beginners
  3. 所属分类:Communication

    • 发布日期:2017-04-04
    • 文件大小:14047
    • 提供者:刘阳
  1. ThreadMutex

    0下载:
  2. 线程同步之互斥对象,希望能给初学者提供帮助-The mutex thread synchronization objects, could help beginners
  3. 所属分类:Communication

    • 发布日期:2017-04-07
    • 文件大小:190837
    • 提供者:刘阳
« 1 2 ... 8 9 10 11 12 1314 15 16 17 18 ... 50 »
搜珍网 www.dssz.com