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

搜索资源列表

  1. OPCClientddl

    0下载:
  2. OPC Client 动态连接库开发和应用-OPC Client ddl development and application
  3. 所属分类:software engineering

    • 发布日期:2017-04-26
    • 文件大小:115777
    • 提供者:pengfeng
  1. JavaMT

    0下载:
  2. 这书着重点是讲java线程,但不局限于java,对posix线程库,win32线程库都有涉及,并对这三者做了一些比较,对于想深入了解线程的人,这书是绝对有帮助的。 -The focus is to talk about this book java threads, but not limited to java, for posix thread library, win32 thread library are involved, and these three have done some
  3. 所属分类:Java Develop

    • 发布日期:2017-05-22
    • 文件大小:7120924
    • 提供者:tty21cn
  1. SCIDLL

    0下载:
  2. 串口动态链接库模块,API函数编写,包含三个线程-API SCI MOUDL
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-16
    • 文件大小:15022
    • 提供者:name
  1. threecodes

    5下载:
  2. 1、 用C语言写一个程序名字为procs4,该程序运行过程中共有4个进程,procs4程序(父进程)创建2个子进程p1和p2,p1子进程再创建一个子进程p3。4个进程完成如下工作: 父进程并打印字符串“I am main process”;p1子进程打印“I am child process p1”字符串;p2子进程打印“I am child process p2”;子进程p3打印字符串“I am child process p3”,然后使用exec(族)系统调用打印当前目录下文件和子目录下
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-01
    • 文件大小:1702
    • 提供者:杨子坤
  1. ZThread

    0下载:
  2. zthread线程库,方便线程各种操作,已经整理成VS2005静态工程,编译后即可使用。-zthread thread library to facilitate the threading of various operations, has been organized into a static VS2005 project, compiled to use.
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-04
    • 文件大小:484718
    • 提供者:gaoguanghai
  1. MultiChatLib

    0下载:
  2. 基于比特精灵多人聊天基础,采用P2P技术,里面实现了完成的 线程库,内存库,和socket通讯类,含TCP和UDP ,代码很经典,执行效率很高,有需要的同学,可以自行下载,仅供学习使用,不得用于商业,否则后果自负。-Chat based on Bitspirit people using P2P technology, which achieved the completion of the thread library, the memory bank, and the socket comm
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-04-01
    • 文件大小:220429
    • 提供者:天一
  1. x264_encoder

    0下载:
  2. C++ x264 编码器类,支持多线程,使用pthread多线程库-C++ x264 encoder classes, support multi-threaded, multi-threaded use of pthread library
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-02
    • 文件大小:260070
    • 提供者:谢凯
  1. boost-thread

    0下载:
  2. BOOST库线程库详细说明,可移植的下一代模板元编程。-BOOST library thread library details, the next generation of portable template meta-programming.
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-29
    • 文件大小:210915
    • 提供者:朋古
  1. 465854635244

    0下载:
  2. 实现了一种OPC Client软件,解决了现场数据通过OPC Server到SQL Server数据库集成的难题。该应用程序提供了 Windows Explore形式的标准的用户界面,易学易用。软件采用了文件操作、OPC数据存取、ADO数据库访问、SQL—DMO对象管理和 操作、系统托盘等多项关键技术,来实现对文件数据源、OPC数据源、SQL Server数据源等的读写和OPC对象、SQL Server中的库、 表、Job等对象的管理和操作。本OPC Client应用程序已在实际工程
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-08
    • 文件大小:247665
    • 提供者:WangWei
  1. LogModule

    0下载:
  2. 程序日志文件,windows Linux通用,完全的模块化 规范化编程 整合LINUX windows 线程库,互斥锁库. VC2005-Log files, windows Linux general, fully integrated modular standardized LINUX windows thread programming library, library mutex. VC2005
  3. 所属分类:Linux Network

    • 发布日期:2017-05-12
    • 文件大小:2951821
    • 提供者:mac
  1. os2

    0下载:
  2. linux下多线程矩阵运算,使用posix线程库-multi-threaded matrix operations under linux, using posix thread library
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-07
    • 文件大小:149710
    • 提供者:陈云卿
  1. ThreadPool

    0下载:
  2. Linux线程池,C++编写,可作为一个线程库进行使用!-Linux Thread pool
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-17
    • 文件大小:12956
    • 提供者:qiao
  1. 3.c

    0下载:
  2. 编写程序实现生产者-消费者问题。使用Linux的pthread线程库,创建2个生产者线程和2 个消费者线程。生产者线程计算当前的时间,把时间、第几次计算时间的序号(循环次 数)和线程ID作为一个消息,把消息放入缓冲区,消费者线程从缓冲区读出一个消息 并显示消息。缓冲区大小为5个,每个生产者线程生产10个消息,每个消费者线程消费 10个消息,即生产和消费分别为20次。 要求:2个生产者线程执行的代码是相同的(即执行同一函数),2个消费者线程也 一样。 提示: 生产者
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-08
    • 文件大小:852
    • 提供者:zheng
  1. pthread

    0下载:
  2. 使用pthread线程库实现多线程素数求解-Using pthread thread library to solve multi-threaded prime number
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-30
    • 文件大小:743
    • 提供者:maverick
  1. PCB

    0下载:
  2. 进程及其资源管理 一、实验目的 1.理解资源共享与互斥特性以及操作系统管理资源的基本方法。 2.学会使用高级语言进行多线程编程的方法。 3.掌握利用VC++或Java线程库实现一个管理器,用来实现操作系统对进程及其资源的管理功能。 4.通过该实验,学生可在源代码级完成进程及其资源管理方案的分析、功能设计、编程实现,控制进程间的同步、互斥关系。 -Process and resource management an experimental purposes 1.
  3. 所属分类:OS Develop

    • 发布日期:2017-03-29
    • 文件大小:7323
    • 提供者:amy
  1. socket

    0下载:
  2. 用pthread多线程库模拟socket网络服务器程序,输入来源是终端用户-Pthread multithreading library analog socket network server program, the input from end-users
  3. 所属分类:Linux Network

    • 发布日期:2017-12-01
    • 文件大小:1666
    • 提供者:juncheng
  1. prime4

    0下载:
  2. 使用pthread多线程库实现筛法生成素数算法,生成1-n内素数后,可以分段生成n+1-n^2内的素数。-Pthread multithreading library sieve method to generate primes algorithm to generate 1-n primes segment to generate n+1-n ^ the primes 2 within.
  3. 所属分类:MPI

    • 发布日期:2017-11-12
    • 文件大小:2324
    • 提供者:juncheng
  1. OmniThreadLibrary-2.2

    1下载:
  2. 一个很棒的线程库,解决了很多的delphi自带的线程的问题,真正体验到什么叫做多线程。很爽. 此为 2.2 版本-。-A great thread library to solve a lot of delphi
  3. 所属分类:Process-Thread

    • 发布日期:2017-11-05
    • 文件大小:2883452
    • 提供者:abc
  1. basic_thread_module

    0下载:
  2. 主要基于Linux介绍C多线程。在编译C的多线程时候,一方面必须指定Linux C语言线程库多线程库pthread,才可以正确编译(例如:gcc test.c -o test -lpthread);另一方面要包含有关线程头文件#include <pthread.h>。-Introduced Linux-based C multi-threaded. Compile the multithreaded C, when, on the one hand, you must specify
  3. 所属分类:Linux Network

    • 发布日期:2017-11-26
    • 文件大小:526
    • 提供者:田盼
  1. kwtp.tar

    0下载:
  2. 一个我自己写的Linux内核线程库,可用于自动创建线程池并自动调整线程个数。-A Linux kernel threads pool lib.
  3. 所属分类:Driver develop

    • 发布日期:2017-12-05
    • 文件大小:13312
    • 提供者:CoderGroup
« 1 2 3 45 6 7 8 9 10 ... 29 »
搜珍网 www.dssz.com