搜索资源列表
COM_Thread_STA_MTA
- com线程模型演示代码,包括单线程套间(STA),多线程套间(MTA)模型-com thread model demonstration code, including thread suites (STA), the multithreaded apartment (MTA) model
Thread
- 多线程控制、线程池模型、HTTP线程,已经封装好了的.
MT
- 在VB6里面使用微软官方推荐的\"单元模型线程\"实现的多线程例子,稳定性很好.
P_C
- 基于windows环境,对多线程间的生产者和消费者模型进行模拟,并尝试解决其中的死锁问题。
xiaoche
- 以二环路上的行车为模型。车在行驶过程中,可以拐弯。演示多线程。
CThreadModel
- 一个windows的多线程编程模型类,实现了线程池
read-write
- C++ 模拟经典读写模型 多线程实现-C++ simulation model of the classic reader
Multithreading
- 在Windows系统中,多任务体系是通过进程和线程模型来实现的。多线程可以使一个程序在同一时间内具有运行多个任务的能力。-In Windows systems, multi-tasking system is through the process and threading model to achieve. Multithreading allows a program running at the same time with multiple tasks.
TestThread
- 多线程学习,java多线程模型,线程同步等待-Multithreading learning, java multithreading model, thread synchronization wait
Producer-Consumer-Model
- 生产者消费者模型,多线程程序,主要涉及互斥、信号量等操作系统知识-Producer consumer model, multi-threaded programs, mainly related to mutual exclusion, semaphores and other operating system knowledge
a-multiThread-Model
- 一个多线程编程模型,用于MFC的的后台设计。其包含一个线程池。-A multi-threaded programming model, the background for the design of MFC. It contains a thread pool.
liaotian-
- 网络聊天室 支持多个客户同时聊天 用到I/O异步模型和多线程 需要的朋友可以自己增加更多功能-Internet chat rooms used to support multiple clients simultaneously chat with I/O model and the multi-threaded asynchronous need to add more friends to their function
mproxysvr3
- 一个多线程的代理程序,程序运行后以服务的形式运行,程序以应用windows socket IO完成端口模型提供代理服务的原型设计-A multithreaded agent, the program running as a service to run the program to apply the windows socket IO completion port model provides a prototype design agent services
Multi-threaded
- 多线程服务器的编程模型,是一本介绍多线程编程的不错书籍。本书详细描述了多线程编程中常用的几种模型。-Multi-threaded server programming model is a good introduction of multi-threaded programming books. This book describes in detail the multi-threaded programming in several popular models.
dxcbcmx
- 主要讲述了常见的多线程服务器的常用编程模型,还是很使用的。-Focuses on a common multi-threaded server programming model commonly used, or is used.
multihread-server-model
- 一份介绍多线程服务器的常用编程模型的文档,pdf格式-this is a pdf file about multithread server model
ThreadExamplePixelColor
- 多线程块模型(MTA)在每个进程里只有一个块而不是多个块。这单个块控制着多个线程而不是单个线程。这里不需要消息队列,因为所有的线程都是相同的块的一个部分,并且可以共享。这样的程序比单线程模型和STA的执行速度都要快,因为降低了系统的负载,因而可以优化来减少系统idle的时间。这些应用程序一般比较复杂,因为程序员必须提供线程同步以保证线程不会并发的请求相同的资源,因而导致竞争情况的发生。这里有必要提供一个锁机制。但是这样也许会导致系统死锁的发生。-Multi-threaded block mode
library
- 多线程 + 信号量(无名信号量)的模拟程序: 阅览室模型:假设阅览室内共有3个座位,阅览室外等待区有5个座位。读者的行为如下:1) 读者到达阅览室时必须先在前台自助登记读者信息,离开时注销。前台每次仅允许一位读者进行登记或注销。2)若读者发现阅览室已满,他可以在阅览室外的等待区等待,3)如果等待的座位也没有了,则放弃等待,离开。 -a simple program about switching among multiple threads
Qt4Ex
- Qt 实现简单的多线程, 经典的生产者消费者模型(Example of MultiThread by Qt)