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

搜索资源列表

  1. pthread

    0下载:
  2. Linux下线程的编程,关于对线程的讲解及线程的应用-Thread programming under Linux, to explain about the thread and the thread of the application
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-17
    • 文件大小:305447
    • 提供者:费旨
  1. Linux_tool

    0下载:
  2. 这个是linux下的多线程下载工具,如果有兴趣的话可以学习下。-This is a multi-thread download tool under linux, if interested you can learn.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-05-06
    • 文件大小:1159255
    • 提供者:
  1. 3

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

    • 发布日期:2017-04-16
    • 文件大小:356475
    • 提供者:庄镝
  1. tiobench-0.3.3

    0下载:
  2. tiobench 是linux下测试多线程的软件工具,对测试多线程的读写非常有用,可以指定文件的大小。-tiobench is a tool for test multi thread in linux, it is very helpful for multi thread test,can set file size
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-27
    • 文件大小:35638
    • 提供者:heart
  1. semaphore

    0下载:
  2. 线程(thread)技术早在60年代就被提出,但真正应用多线程到操作系统中去,是在80年代中期,solaris是这方面的佼佼者。传统的Unix也支持线程的概念,但是在一个进程(process)中只允许有一个线程,这样多线程就意味着多进程。这个代码就是Linuxs emaphore多线程编程-Multi-threaded programming on linux
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-06
    • 文件大小:1151
    • 提供者:lzy
  1. third_drv

    0下载:
  2. linux 线程实验简单功能实现,简单易懂-linux thread experiment simple functions
  3. 所属分类:Linux驱动

    • 发布日期:2017-04-08
    • 文件大小:79159
    • 提供者:yuanyongde
  1. pThread

    0下载:
  2. 在Linux上实现的调用API的线程控制函数,包括线程的生成以及释放-Call the API on Linux thread control functions, including the generation and release of the thread
  3. 所属分类:Linux驱动

    • 发布日期:2017-04-10
    • 文件大小:712
    • 提供者:顾兆伦
  1. ReaderAndWriter

    0下载:
  2. Linux下读者写者问题, 1)写-写互斥:不能有两个写者同时进行写操作; 2)读-写互斥:不能同时有一个线程在读,而另一个线程在写; 3)读-读允许:可以有一个或多个读者在读; 4)读者优先的附加限制:如果读者申请进行读操作时已有另一个读者正在进行读操作,则该读者可直接开始读操作; 5)写者优先的附加限制:如果一个读者申请进行读操作时已有另一个写者在等待访问共享资源,则该读者必须等到没有写者处于等待状态后才能开始读操作。-Under Linux readers to write, 1) wri
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-03
    • 文件大小:2515
    • 提供者:翔子
  1. yuan

    0下载:
  2. 嵌入式Linux中的进程/线程间通信机制研究,多进程/线程相互间的通信,包括父子进程间采用有名管道进行通信、进程间共享内存和消息队列通信、信号通信。-research on the Linux process/thread communication mechanism
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-01
    • 文件大小:2273
    • 提供者:刘育烽
  1. Wiippv6pinga

    0下载:
  2. linux下 ipv6协议 ping程序源码最多运行50线程 2.每个线程发送4个ICMP6包后开始接收 3.试验程序源码,多线程结构安排不一定合理,待试验验后进一步修改 4.在终端./pingipv6 IP11 1P2......即可运行程序源码 5.为单源文件,没写make,编译命令为: gcc 可直接使用。 -ping program source code under linux ipv6 protocol up to run 50 threads each thread send
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-31
    • 文件大小:2851
    • 提供者:
  1. tsf

    0下载:
  2. tsfriend tool run on linux About this is a linux version of tsfriend. for edit SI/PSI and other ts information. windows version: http://code.google.com/p/tsfriend/ difference with windows version: without multi thread feature. witho
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-28
    • 文件大小:343990
    • 提供者:soup
  1. pthreads

    0下载:
  2. linux中线程编程具体用法实例,有助于初学者的学习- specific usage examples of thread programming will help beginners to learn linux
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-02
    • 文件大小:6847
    • 提供者:杨花卫
  1. ThreadTest

    0下载:
  2. linux环境下,线程池的实际应用 ,直接调用即可-The practical application of the thread pool can be called directly
  3. 所属分类:Windows Kernel

    • 发布日期:2017-12-10
    • 文件大小:7579
    • 提供者:zhang
  1. shell

    0下载:
  2. 在 linux下 线程的 创建,然后 是用 该线程-In under linux thread creation, then use the thread
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-12-08
    • 文件大小:3092
    • 提供者:黄建
  1. sem

    0下载:
  2. 学习Linux 编程中的进程线程时写的一个关于信号量的小代码-Small code learning the Linux programming process thread write a semaphore
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-11-30
    • 文件大小:1923
    • 提供者:李斌
  1. 3

    0下载:
  2. 设有两个并发执行的父子进程,不断循环输出各自进程号、优先数和调度策 略。进程初始调度策略均为系统默认策略和默认优先级。当父进程收到 SIGINT 信 号时会自动将其优先数加 1,子进程收到 SIGTSTP 信号时会自动将其优先数减 1。 请编程实现以上功能。 -linux thread
  3. 所属分类:Windows Kernel

    • 发布日期:2016-01-26
    • 文件大小:6144
    • 提供者:shiqian
  1. thread_pratice.tar

    0下载:
  2. 这是linux里面对线程的简单操作演示,对于刚接触linux系统编程的人来说还是挺有用的。-This is a simple operation and demonstration of linux inside thread, for people new to linux system programming is quite useless.
  3. 所属分类:Driver develop

    • 发布日期:2017-12-01
    • 文件大小:10240
    • 提供者:梦幻之旅
  1. thread_create

    0下载:
  2. 旨在linux下的线程的创建,方便了初学者对于线程创建的掌握-Aimed at the creation of the thread under linux convenience beginners mastery for thread creation
  3. 所属分类:Driver develop

    • 发布日期:2017-11-22
    • 文件大小:564
    • 提供者:立哥
  1. Linux_thread_pool

    0下载:
  2. Linux 下的线程池,提供了详细的API供用户调用。-Thread pool under Linux, provides a detailed API for users to call
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-12-05
    • 文件大小:5389
    • 提供者:huo
  1. pthread-test

    0下载:
  2. linux下的多线程例子,包含了俩个线程的创建和互斥.-under linux multithreading example, contains both thread creation and mutual exclusion.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-11-22
    • 文件大小:680
    • 提供者:zuoyong
« 1 2 ... 4 5 6 7 8 910 11 12 13 14 15 »
搜珍网 www.dssz.com