搜索资源列表
2006052812302618398
- java开发的演示多线程的小游戏(翻牌游戏) 用了线程同步(值得参考)-java development of the demonstration of small multithreaded games (transforming games) with a thread synchronization (worth)
VC_thread
- VC6.0关于多线程编程的程序,主要包括多线程中的线程创建,线程同步等知识-VC6.0 on multithreaded programming procedures, including multithreading of thread creation, thread synchronization knowledge
multithreadchat
- 多线程程序的编写,多线程应用中容易出现的问题。互斥对象的讲解,如何使用互斥对象来实现多线程的同步。如何利用命名互斥对象保证应用程序只有一个实例运行。应用多线程编写网络聊天室程序。-multithreaded program, multithreaded applications easily occur. Mutex object explain how to use the mutex object to the multi-thread synchronization. How to use
vc_jiqiaoshili_part4
- Visual.C++程序设计技巧与实例--配套光盘 第4章 进程和线程 本章共有8个实例: 1. Process创建和终止进程 2. WorkerThread创建工作者线程 3. UIThread用户界面线程示例 4. Event使用事件对象来实现线程的同步 5. Thread使用临界区对象来实现线程的同步 6. Mutex使用互斥量对象来实现不同进程间的线程同步 7. Semaphore使用信号量对象实现线程的同步 8. MutiThread多线程任务调
ThreadSynch
- VC++MFC多线程同步实例,信号量,互斥锁,事件,临界资源,,,,BY GDUT NETWORK 01
lesson16
- 孙鑫老师VC视频第十六课代码:事件内核对象、关键代码段(临界区)的讲解,以及在多线程同步中的应用。在Windows下编写基于消息的网络应用程序,掌握阻塞与非阻塞网络程序的编写,理解在Windows平台下,采用异步选择机制可以提高网络应用程序的性能。
Pthread-to-caculate-PI 多线程计算π
- 并行计算课程实验,多线程计算π,采用了加锁法以及数组暂存解决数据同步问题。-Experimental parallel computing course, multi-threaded computing π, using an array of temporary lock method and solve the data synchronization.
hello
- 操作系统课程设计的一个重要例子,模拟多线程同步的银行存款的例子-Operating systems curriculum design as an important example, analog multi-threaded synchronization examples of bank deposits
jchq
- (1) 掌握基本的同步与互斥算法,理解生产者消费者模型。 (2) 学习实用Windows2000/XP中基本的同步对象特性,掌握相关API的使用方法。 (3) 了解Windows2000/XP中多线程的并发执行机制,实现进程的同步与互斥。 -(1) master the basic synchronization and mutual exclusion algorithms, understanding of the producer consumer model. (2) lea
product_consume_pro
- 通过多线程模拟,实现生产和消费者进程同步问题,可以作为教学演示-Through multi-threaded simulation, the process of production and consumer synchronization problem can be as a teaching demonstration
SystemOs
- 用多线程同步方法解决哲学家就餐问题 操作系统课程设计 Dining-Philosophers Problem-Dining-Philosophers Problem
mune
- 线程同步机制。 互斥器的功能和临界区域很相似。区别是:Mutex所花费的时间比Critical Section多的多,但是Mutex是核心对象(Event、Semaphore也是),可以跨进程使用,而且等待一个被锁住的Mutex可以设定TIMEOUT,不会像Critical Section那样无法得知临界区域的情况,而一直死等。-Thread synchronization mechanism. Mutex' s function and the critical region is
MutipleThread
- 解决多个售票员售票,把一张票售给多个乘客的问题,采用多线程同步与互斥解决。-Solve multiple conductor ticket sales, the number of passengers a ticket sold to the problem of multi-thread synchronization and mutual exclusion solution.
duoxiancheng
- 多线程源代码,实现火车售票系统模拟程序,利用互斥对象实现线程同步-huoche
DelphiThread
- 本文介绍了Oelphi中多线程编程运行时存在的安全问题,指出多线程同步的必要性.并给出了实现多线程同步的解决方法. -This article describes the Oelphi in running multi-threaded programming security problems, that the need for multi-thread synchronization. And providing a multi-thread synchronization solut
windows_system_process_synchronization_and_mutual_
- windows系统进程同步与互斥Windows 2000/XP中多线程的并发执行机制,实现进程的同步与互斥-windows system process synchronization and mutual exclusion in multi-threaded Windows 2000/XP concurrent implementation mechanism to achieve process synchronization and mutual exclusion
ose_book
- 操作系统实验 内含多线程 同步 互斥 存储 通信等应用 -os
PCB
- 进程及其资源管理 一、实验目的 1.理解资源共享与互斥特性以及操作系统管理资源的基本方法。 2.学会使用高级语言进行多线程编程的方法。 3.掌握利用VC++或Java线程库实现一个管理器,用来实现操作系统对进程及其资源的管理功能。 4.通过该实验,学生可在源代码级完成进程及其资源管理方案的分析、功能设计、编程实现,控制进程间的同步、互斥关系。 -Process and resource management an experimental purposes 1.
Product
- 模拟实现生产者消费者问题 生产者消费者问题,也称有限缓冲问题,是一个多线程同步问题的经典案例。该问题描述了两个共享固定大小缓冲区的线程——即所谓的“生产者”和“消费者”——在实际运行时会发生的问题。生产者的主要作用是生成一定量的数据放到缓冲区中,然后重复此过程。与此同时,消费者也在缓冲区消耗这些数据。该问题的关键就是要保证生产者不会在缓冲区满时加入数据,消费者也不会在缓冲区中空时消耗数据。 要解决该问题,就必须让生产者在缓冲区满时休眠(要么干脆就放弃数据),等到下次消费者消耗缓冲区中的数
1065_日志示例 (2)
- 用多线程处理日志的中间插件,可以绑定memo同步,会根据日期存储日志文件(Using multithreading to process log intermediate plug-ins, you can bind memo synchronization and store log files according to date)