CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - linux create thread

搜索资源列表

  1. mylibsrc

    0下载:
  2. 一个线程池的例子 运行环境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
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:14.73kb
    • 提供者:kevert
  1. pthread_create

    0下载:
  2. 用c語言,在linux上create 1000個thread去ping某一台主機。
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:951byte
    • 提供者:何德威
  1. CreateProcess

    0下载:
  2. 在Linux下面的编程,创建进程、线程和进程同步。-In the Linux programming below, create a process, thread and process synchronization.
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-17
    • 文件大小:246.84kb
    • 提供者:晨光
  1. create_a_thread_under_linux

    0下载:
  2. 简单的介绍线程的创建和基本的使用,关于线程的高级使用(如线程的属性,线程的互斥,线程的同步等等问题)可以参考我后面给出的资料. -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
  3. 所属分类:Document

    • 发布日期:2017-03-30
    • 文件大小:2.49kb
    • 提供者:huyutao
  1. thread_struct

    0下载:
  2. Linux创建线程,传递结构体参数的范例!-Linux create a thread, passing the parameters of the sample structure!
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-11
    • 文件大小:1.1kb
    • 提供者:oyj
  1. thread

    0下载:
  2. linux下线程的相关应用,创建两个线程,交替输出信息-linux application under the relevant thread, to create two threads, alternating output
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-04
    • 文件大小:691byte
    • 提供者:沈文斌
  1. thread

    0下载:
  2. 概述一下原理和每个类的作用 (1): CTask 一个任务基类,作为线程的参数用 (2): CWorkThread:工作线程类,轮询检测参数是否可用,如果可用的话, 就去调用参数CTask的执 行函数Execute,如果参数不可用就等待 (3): CWorkQueue:是一个任务队列,里面装载CTask子类的对象,是一个对象的容器 (4): CWorkThreadPool:工作线程池,其中包含了工作线程组,调度线程,调度线程不停的检测 任务队列中是否有可用
  3. 所属分类:Linux/Unix编程

    • 发布日期:2013-03-18
    • 文件大小:38.27kb
    • 提供者:金建业
  1. jinchengyuxiancheng

    0下载:
  2. 在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
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-03
    • 文件大小:1.63kb
    • 提供者:pearl
  1. The-cPP-thread-principle-and-create

    0下载:
  2. 虽然作为线程池,已经很多很好的模式, 比如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
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-07
    • 文件大小:191.24kb
    • 提供者:vivian
  1. Pthread-of-linux

    0下载:
  2. 在linux环境下编写一个控制台应用程序,程序中有一个共享的整型变量shared_var,初始值为0;创建一个线程并使其立即与主线程并发执行。新创建的线程与主线程均不断地循环,并输出shared_var 的值。主线程在循环中不断地对shared_var 进行加1操作,即每次循环shared_var 被加1;而新创建的线程则不断地对shared_var 进行减1 操作,即每次循环shared_var 被减1。观察程序运行的结果,并对你看到的现象进行解释。-Written in the linux
  3. 所属分类:Linux驱动

    • 发布日期:2017-03-30
    • 文件大小:10.05kb
    • 提供者:gc
  1. 3

    0下载:
  2. 按照生产者/消费者的工作原理,在Linux环境下,创建两个进程(或线程),一个进程(线程)作为生产者(用来向缓冲区中写入字符,字符的个数有限),另一个进程(线程)作为消费者(从缓冲区中读取生产者写入的字符)。 要求: 1. 程序应将缓冲区中的内容不断的显示出来; 2. 程序设计中要考虑两进程并发执行中的同步与互斥问题; 3. 有能力的同学可以将管理的并发进程数扩展为N(N>=3)多个。-In accordance with the producer/consumer
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-16
    • 文件大小:348.12kb
    • 提供者:庄镝
  1. test1

    0下载:
  2. 对新学linux的人是个很好的例子,主要是如何创建线程,如何关闭线程-New learning linux is a good example of how to create a thread how to turn off thread
  3. 所属分类:Linux Network

    • 发布日期:2017-04-14
    • 文件大小:3.48kb
    • 提供者:孙阳
  1. 2

    0下载:
  2. 在Linux环境下采用socket套接口编程,服务器程序以创建线程池的方式为每一个客户服务。-In the Linux environment using socket socket programming, server program to create a thread pool for each customer service.
  3. 所属分类:software engineering

    • 发布日期:2017-11-26
    • 文件大小:343.61kb
    • 提供者:郑州
  1. shared_var

    2下载:
  2. 在linux环境下编写一个控制台应用程序,程序中有一个共享的整型变量shared_var,初始值为0;创建一个线程并使其立即与主线程并发执行。新创建的线程与主线程均不断地循环,并输出shared_var 的值。主线程在循环中不断地对shared_var 进行加1操作,即每次循环shared_var 被加1;而新创建的线程则不断地对shared_var 进行减1 操作,即每次循环shared_var 被减1。观察程序运行的结果,并对你看到的现象进行解释。-In the Linux environm
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-07
    • 文件大小:2.63kb
    • 提供者:段昀
  1. thread

    0下载:
  2. Linux下关于线程的才、代码编写,包含现成创建等待和销毁-Under Linux only code written on the thread, including ready-to create a wait-and-destroy
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-15
    • 文件大小:5.91kb
    • 提供者:张平
  1. thread_pool

    0下载:
  2. linux线程池的实现。线程池技术多用在需要频繁的创建与销毁线程的场合。-achieve linux thread pool. Thread pool technology is used in the need to create and destroy threads frequent occasions.
  3. 所属分类:Linux Network

    • 发布日期:2017-04-23
    • 文件大小:26.22kb
    • 提供者:race
  1. test_get_save_answer

    0下载:
  2. 在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
  3. 所属分类:其他

    • 发布日期:2018-01-09
    • 文件大小:1kb
    • 提供者:华龙者
搜珍网 www.dssz.com