搜索资源列表
Thread(new)
- 这是一个关于线程并行与串行所用时间的比较(结合了win32更有实用性)-This is a thread of the serial and parallel time spent by the comparison (in the context of the win32 more practical)
c_s_udp_tcp
- 基于ace和wxWidgets结合使用的c/s结构的例子,server广播后,client对server发起连接,然后server启动接收线程,并将收到的数据通过单独的线程进行处理;该代码有以下特点:wxWidgets事件循环和ace的Reactor事件循环并行处理,定时器以及读写的并行处理,udp和tcp通信的并行处理,ui线程和通信线程的并行处理;有此例子,开发跨平台跨编译器的带图形界面的c/s程序易如反掌。-wxWidgets based ace and the combined use
readerwriter.cpp
- 读者—写者问题的读写操作限制(包括读者优先和写者优先): 1)写—写互斥,即不能有两个写者同时进行写操作。 2)读—写互斥,即不能同时有一个线程在读,而另一个线程在写。 3)读—读允许,即可以有一个或多个读者在读。 -readers-the problem was the restrictions on reading and writing operations (including readers wrote priority and priority) : 1) w
Java_Socke183657142005
- 一个基于Java编写的Socket程序,提供简单的FTP功能实现 This networking program set consists of implementation of FTP, TELNET, HTTP SERVER, UDP NEWS SERVER, Multi client parallel chat server, Date server. Knowledge of socket programming, applet, AWT, thread, and IO str
x-net
- IOCP(I/O Completion Port,I/O完成端口)是性能最好的一种I/O模型。它是应用程序使用线程池处理异步I/O请求的一种机制。在处理多个并发的异步I/O请求时,以往的模型都是在接收请求是创建一个线程来应答请求。这样就有很多的线程并行地运行在系统中。而这些线程都是可运行的,Windows内核花费大量的时间在进行线程的上下文切换,并没有多少时间花在线程运行上。再加上创建新线程的开销比较大,所以造成了效率的低下。 -IOCP (I/O Completion Port, I/O
l-thread
- An exercise with thread of C. If you want to explore this programming language you must know the thread and parallel programming.
Dijkstra-omp
- C语言和OpenMP编写的可在多核或SMP处理器上进行多线程运行的最短路径算法。可了解多核多线程和OpenMP的并行编程技术。-C language and can be prepared OpenMP or multi-core processors on SMP multi-threading to run the shortest path algorithm. Learn to multi-core multi-thread and OpenMP parallel programming
ImageEdit
- 简单的线程并行的编程,用到事件和临界区,工作者线程对图像的处理-Simple parallel-threaded programming, use cases and critical areas, workers on the image processing thread
appplet
- 在使用声音文件的时候,特地引用了一个媒体文件,是JDK本身没有的,程序不安装JMF是无法听到声音的。之后,在线程应用上,建立两个相应的线程就可以完成任务了。在效果上能够让人感觉到是同步进行,但应当实际理解为程序的运行是线性的,在单CPU上是不可能出现并行的。-At a time when the use of sound files, specifically citing a media file, the JDK does not, the program not to install JM
QGServerLib_release.tar
- QGServerLib是一个C++实现的简单易用的Tcp服务器框架库,旨在简化服务器的构建过程。 具有如下特点: 1, 以模块化的处理池为基本构建元素,能够方便的实现安全稳定的服务架构。 2,事件触发,多线程事件监听,任务化读写访问,解决单线程监听及数据读写带来的性能瓶颈,连接不受线程数限制。 3,写队列,并行读写逻辑,支持服务器数据推送(Push)。 4,数据传送协议,避免数据传送错误,封装数据流。 5,类远过程调用。 6,
Retlang.0.4.2.0
- Retlang is a robust library for writing highly concurrent applications. The library borrows part of its name and design from Erlang. Retlang provides a concurrency solution that is quite different from basic locking solutions, Parallel FX, or t
MultiCore-Programming
- Intel出版的多核编程,介绍通过软件的多线程方式来提高性能的方法。分为介绍多核变成,线程的综述,并行的基本概念,线程以及并行编程的结构,线程的API,OpenMP技术,并行编程的常规问题,多线程debug方法,Intel多核处理器的线程及其开发工具等。-Intel multi-core programming, published to introduce the way through the software to improve performance of multi-threaded
shed
- Shed是一款极快速的WINDOWS共享资源扫描软件。并行扫描多潜在主机,当搜到共享资源时,按有效性排列。-Shed is a very fast Windows shared resource scanner. Multiple potential hosts are scanned in parallel and when a shared resource is encountered it is enumerated in a separate thread for maximu
Threads
- A simple Thread system for parallel programs
DEMO_parallel_sorting_using_thread
- parallel sorting using thread program
delphithreads
- Best Delphi Thread (Object wrapper for the parallel threads - Windows threads Предложить лучший вариант перевода)
pthread-merge
- p-thread merge sort!
Segmented-parallel
- 并行是指时间上的同时处理。并发是将程序分成多个线程分段执行,通过调度线程执行顺序,来实现多个程序对于用户来说是同时运行的,就像你可以听歌的同时修改文档一样。但具体到线程级别的话,这些线程实际上是线性执行的,只不过执行消耗的时间片实在太短,人感觉不出来,只是觉得两个程序都在正常运行。目前能算得上并行的话也就多核技术了,而且还得解决同步问题,只能说更加接近并行的概念。-Parallel processing is the same in time. Concurrency is staging a
Updatedata-in-thread-by-Sendmessage
- VS2013环境下,在线程中使用Sendmessage实现Updatedata(False)功能。并且进行多线程并行运行的演示。-Under VS2013 environment, the use Sendmessage achieve Updatedata (False) function in the thread. And multi-threaded demo run in parallel.
parallel
- 一种多进程进行并行计算的程序,不采用线程池方法。用多进程并行计算加快运行速度。例子中采用并行多进程取最大值。-A multi-process procedure performed in parallel computing, do not use the thread pool method. Parallel computing using multiple processes to run faster. Examples of parallel multi-process takes a