当前位置:
首页 资源下载
搜索资源 - linux create thread
搜索资源列表
-
0下载:
一个线程池的例子
运行环境linux,主要实现了线程的预先创建等
通过该例子可以学到怎样预先创建出一些线程-a thread pool example Linux operating environment. main thread of the advance through the creation of such examples can learn how to create some advance Thread
-
-
0下载:
用c語言,在linux上create 1000個thread去ping某一台主機。
-
-
0下载:
在Linux下面的编程,创建进程、线程和进程同步。-In the Linux programming below, create a process, thread and process synchronization.
-
-
0下载:
简单的介绍线程的创建和基本的使用,关于线程的高级使用(如线程的属性,线程的互斥,线程的同步等等问题)可以参考我后面给出的资料. -Brief basic thread creation and use, on the high-level use of thread (such as the attributes of threads, thread the mutex, thread synchronization and so on) can refer to the information
-
-
0下载:
Linux创建线程,传递结构体参数的范例!-Linux create a thread, passing the parameters of the sample structure!
-
-
0下载:
linux下线程的相关应用,创建两个线程,交替输出信息-linux application under the relevant thread, to create two threads, alternating output
-
-
0下载:
概述一下原理和每个类的作用
(1): CTask 一个任务基类,作为线程的参数用
(2): CWorkThread:工作线程类,轮询检测参数是否可用,如果可用的话,
就去调用参数CTask的执 行函数Execute,如果参数不可用就等待
(3): CWorkQueue:是一个任务队列,里面装载CTask子类的对象,是一个对象的容器
(4): CWorkThreadPool:工作线程池,其中包含了工作线程组,调度线程,调度线程不停的检测
任务队列中是否有可用
-
-
0下载:
在Linux环境中采用用户级线程模拟实现DEF和RMS两种实时调度算法。给定一组实时任务,按照DEF算法和RMS算法分别判断是否可调度。在可调度的情况下,创建一组用户级线程,分别代表各个实时任务,并按算法所确定的调度次序安排各个线程运行-In the Linux environment, using simulated user-level thread implementation DEF and two real-time scheduling algorithm for RMS. Give
-
-
0下载:
虽然作为线程池,已经很多很好的模式, 比如boost提供的线程池库.不过最好自己还应该对其有所了解, 该书对线程池的讲解还比较透彻.但是基于linux,所以文档中附带的代码,只是作为参考, 具体的移植更改,还是要自己动手来做.-Although as a thread pool has a lot of good models, such as the boost provided by the thread pool library, but should also be their own
-
-
0下载:
在linux环境下编写一个控制台应用程序,程序中有一个共享的整型变量shared_var,初始值为0;创建一个线程并使其立即与主线程并发执行。新创建的线程与主线程均不断地循环,并输出shared_var 的值。主线程在循环中不断地对shared_var 进行加1操作,即每次循环shared_var 被加1;而新创建的线程则不断地对shared_var 进行减1 操作,即每次循环shared_var 被减1。观察程序运行的结果,并对你看到的现象进行解释。-Written in the linux
-
-
0下载:
按照生产者/消费者的工作原理,在Linux环境下,创建两个进程(或线程),一个进程(线程)作为生产者(用来向缓冲区中写入字符,字符的个数有限),另一个进程(线程)作为消费者(从缓冲区中读取生产者写入的字符)。
要求:
1. 程序应将缓冲区中的内容不断的显示出来;
2. 程序设计中要考虑两进程并发执行中的同步与互斥问题;
3. 有能力的同学可以将管理的并发进程数扩展为N(N>=3)多个。-In accordance with the producer/consumer
-
-
0下载:
对新学linux的人是个很好的例子,主要是如何创建线程,如何关闭线程-New learning linux is a good example of how to create a thread how to turn off thread
-
-
0下载:
在Linux环境下采用socket套接口编程,服务器程序以创建线程池的方式为每一个客户服务。-In the Linux environment using socket socket programming, server program to create a thread pool for each customer service.
-
-
2下载:
在linux环境下编写一个控制台应用程序,程序中有一个共享的整型变量shared_var,初始值为0;创建一个线程并使其立即与主线程并发执行。新创建的线程与主线程均不断地循环,并输出shared_var 的值。主线程在循环中不断地对shared_var 进行加1操作,即每次循环shared_var 被加1;而新创建的线程则不断地对shared_var 进行减1 操作,即每次循环shared_var 被减1。观察程序运行的结果,并对你看到的现象进行解释。-In the Linux environm
-
-
0下载:
Linux下关于线程的才、代码编写,包含现成创建等待和销毁-Under Linux only code written on the thread, including ready-to create a wait-and-destroy
-
-
0下载:
linux线程池的实现。线程池技术多用在需要频繁的创建与销毁线程的场合。-achieve linux thread pool. Thread pool technology is used in the need to create and destroy threads frequent occasions.
-
-
0下载:
在linux环境下编写应用程序,该程序运行时能创建N个线程,其中既有读者线程又有写者线程,它们按照事先设计好的测试数据进行读写操作。(The application program is written in Linux environment. The program can create N threads at runtime, including reader thread and writer thread. They read and write according to pre d
-