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

搜索资源列表

  1. BallsRace

    0下载:
  2. 线程编程,有5个小球在一个界面,分别有小球的等待和执行-Threaded programming, there are 5 balls in a interface, respectively, waiting for the ball and the implementation of
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-04
    • 文件大小:44785
    • 提供者:chenl
  1. include1

    0下载:
  2. 因为有多个缓冲区,所以生产者线程没有必要在生成新的数据之前等待最后一个数据被消费者线程处理完毕。同样,消费者线程并不一定每次只能处理一个数据。在多缓冲区机制下,线程之间不必互相等待形成死锁,因而提高了效率。 -Because there are a number of the buffer zone, so there is no need for the producer thread to generate new data on waiting until the last thre
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-01
    • 文件大小:5107
    • 提供者:张闽
  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 meet the " demands" , t
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-31
    • 文件大小:640
    • 提供者:谢雨
  1. tongbu

    0下载:
  2. 操作系统课程设计——两个线程同步,包括线程创建、挂起与等待。-Operating systems curriculum design- the two thread synchronization, including thread creation, hang and wait.
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-28
    • 文件大小:33014
    • 提供者:denggaoming
  1. ProducersAndCustomers

    0下载:
  2. 通过研究Linux的线程机制和信号量实现生产者消费者(Bounded Buffer)问题的并发控制。 通过n个缓冲区组成缓冲池共同完成“生产和消费”任务,每个缓冲区存放一个产品,生产者将生产出的产品放入空缓冲区;消费者从满缓冲区中取出产品。一旦所有缓冲区均满时,生产者必须等待消费者提供空缓冲区。另外,对所有生产者和消费者线程来说,缓冲池是临界资源,即任何一个线程在对某个缓冲区进行“存”和“取”操作时须和其他线程互斥执行。 -By studying the Linux thread and
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-09
    • 文件大小:4676
    • 提供者:vivien
  1. Simulator

    0下载:
  2. 模拟顾客服务,具体有:代理服务,顾客数目,启动线程,计算顾客的等待时间,顾客数,并累计总的等待时间,释放一个顾客等.-Simulation of customer service, specifically are: agency services, the number of customers, start threads, calculating the customer' s waiting time, customer number, and a cumulative total
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-04-23
    • 文件大小:22427
    • 提供者:zhaowenming
  1. DataCache

    0下载:
  2. 自己实现的一个高效的通用对象队列,支持等待和唤醒。实用了Lock机制,对多线程并发比SYnchronization快-DataQueue with Locks
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-04
    • 文件大小:885
    • 提供者:fuchun.xia
  1. pthread

    0下载:
  2. 基于ARM9的Linux多线程应用程序。生产者写入缓冲区和消费者从缓冲区读数的具体流程,生产者首先获得互斥锁,并且判断写指针+1后是否等于读指针,如果相等则进入等待状态,等候条件变量notfull;如果不等则向缓冲区中写入一个整数,并且设置条件变量为notempty,最后释放互斥锁。消费者线程与生产者线程类似。-ARM9-Linux-based multi-threaded applications. Producers and consumers into a buffer from the
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-30
    • 文件大小:1364
    • 提供者:刘冉
  1. mune

    0下载:
  2. 线程同步机制。 互斥器的功能和临界区域很相似。区别是:Mutex所花费的时间比Critical Section多的多,但是Mutex是核心对象(Event、Semaphore也是),可以跨进程使用,而且等待一个被锁住的Mutex可以设定TIMEOUT,不会像Critical Section那样无法得知临界区域的情况,而一直死等。-Thread synchronization mechanism. Mutex' s function and the critical region is
  3. 所属分类:OS Develop

    • 发布日期:2017-04-10
    • 文件大小:1888089
    • 提供者:陈小
  1. five

    0下载:
  2. 我使用以前的五子棋VC游戏的架构和资源,用了一个副线程将我的通讯与框架代码写在里面,MFC与副线程间是用内核对象和全局变量通讯的。 1.主线程: a负责创建MFC单文档 b,等待副线程开启鼠标移动和左击事件的许可,是bool g_mouseMoveAble和bool g_lButtonDownAble两个变量来控制的。 c,单击事件发生后,如果单击的合法(在棋盘上不与其它的棋子冲突),就可以将通知(HANDLE hEvent)给副线程,通知它来处理。
  3. 所属分类:Chess Poker games

    • 发布日期:2017-05-17
    • 文件大小:5014922
    • 提供者:sunyi
  1. producer_consumer

    0下载:
  2. 在同一个进程地址空间内执行的两个线程。生产者线程生产物品,然后将物品放置在一个空缓冲区中供消费者线程消费。消费者线程从缓冲区中获得物品,然后释放缓冲区。当生产者线程生产物品时,如果没有空缓冲区可用,那么生产者线程必须等待消费者线程释放出一个空缓冲区。当消费者线程消费物品时,如果没有满的缓冲区,那么消费者线程将被阻塞,直到新的物品被生产出来。-In the same address space of a process implemented within the two threads. Th
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-31
    • 文件大小:622
    • 提供者:JK
  1. vcthreads

    0下载:
  2. 10个VC++多线程操作实例源代码,内容涉及如何安全终止线程、如何创建UI线程、如何创建Worker线程、如何等待线程结束、如何挂起和恢复线程、如何获得线程的退出码、如何使用互斥量、如何使用临界区、如何使用信号量等内容,入门者更应该看一看,多线程的使用很广泛,可以提高程序效率。 -10 VC++ source code examples of multi-threaded operation, which relates to how to safely terminate the thre
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-05
    • 文件大小:134071
    • 提供者:yzj
  1. Philosophers

    0下载:
  2. 这个程序可以演示关于哲学家就餐的问题,对于理解线程的相互等待有很好的作用-This procedure can be demonstrated on the Dining Philosophers problem, each thread to wait for understanding the role of good
  3. 所属分类:matlab

    • 发布日期:2017-04-09
    • 文件大小:1951243
    • 提供者:刘亚云
  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. readingroom

    0下载:
  2. 模拟阅览室 有阅览室 等待区 读者来看到阅览室满则在等待区等待 若等待区满则直接离开 多线程-readingroom
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-13
    • 文件大小:1691
    • 提供者:囧囧有神
  1. 2009103015231441894

    0下载:
  2. 10个VC++多线程操作实例源代码,内容涉及如何安全终止线程、如何创建UI线程、如何创建Worker线程、如何等待线程结束、如何挂起和恢复线程、如何获得线程的退出码、如何使用互斥量、如何使用临界区、如何使用信号量等内容,入门者更应该看一看,多线程的使用很广泛,可以提高程序效率。 -10 VC++ source code examples of multi-threaded operation, which relates to the safe termination of the thre
  3. 所属分类:CSharp

    • 发布日期:2017-04-17
    • 文件大小:136065
    • 提供者:吴辉煌
  1. 20100420MultiThread2

    0下载:
  2. 该程序演示了如何传送一个一个整型的参数到一个线程中,以及如何等待一个线程完成处理。 -This program demonstrates how to send a one integer parameter to a thread, and how to wait for a thread to complete processing.
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-06
    • 文件大小:11139
    • 提供者:陈大民
  1. MultiThread2

    0下载:
  2. 演示按顺序传送整型参数到线程中,并等待线程完成处理。-Show the process of send integer parameters in order to thread, and wait for thread to finish processing.
  3. 所属分类:Process-Thread

    • 发布日期:2017-05-15
    • 文件大小:3753973
    • 提供者:周乙舜
  1. 7.1_ThreadCounter

    0下载:
  2. 等待创建完成,在“当前内存大小可产生的线程个数”文本编辑框中显示当前内存可创建线程的个数。-ThreadCounter\debug\ThreadCounter.exe
  3. 所属分类:GUI Develop

    • 发布日期:2017-04-16
    • 文件大小:26398
    • 提供者:nicolas
  1. vc_Programming_how_wait_thread_end_of_code

    0下载:
  2. vc编程开发如何等待线程结束代码vc Programming how to wait for the thread end of the code-vc Programming how to wait for the thread end of the code
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:12618
    • 提供者:fkang
« 1 2 3 4 56 7 8 9 »
搜珍网 www.dssz.com