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

搜索资源列表

  1. POSIX-pthread

    0下载:
  2. POSIX多线程编程中文版,学习多线程的经典书籍-POSIX multithreaded programming Chinese version, learning multithreaded classic books
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-11-17
    • 文件大小:8561337
    • 提供者:larus
  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. dbus-sysdeps-pthread

    0下载:
  2. Implements threads using pthreads internal to libdbus.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-11-23
    • 文件大小:2819
    • 提供者:vongfengmao
  1. pthread-timers

    0下载:
  2. This file implements the support required to implement SIGEV_THREAD posix timers.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-12-06
    • 文件大小:5569
    • 提供者:gounondon
  1. pthread-rwlocks

    0下载:
  2. Possible states of a read/write lock:.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-12-01
    • 文件大小:2749
    • 提供者:zuevoudei
  1. linux-pthread

    0下载:
  2. Linux 多线程服务器程序,基于线程池架构-Linux multithreaded server program, based on the thread pool architecture
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-11-25
    • 文件大小:2329
    • 提供者:qzf
  1. pthread.c.tar

    0下载:
  2. 共享锁和信号量的使用方法,多线程程序的设计原理!-Shared locks and semaphores to use, multi-threaded program design principles!
  3. 所属分类:Driver develop

    • 发布日期:2017-04-07
    • 文件大小:1144
    • 提供者:黄电
  1. pthreads-w32-2-9-1

    0下载:
  2. 一个跨平台的线程库 pthread,很好用-one cross pthread lib,so nice
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-05-04
    • 文件大小:1214045
    • 提供者:micklongen
  1. threads

    0下载:
  2. Thread development of ordinary linux that is pthread
  3. 所属分类:Driver develop

    • 发布日期:2017-04-25
    • 文件大小:180673
    • 提供者:saravanaa
  1. pthread

    0下载:
  2. build using pthreads Source Code for Andriod.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-14
    • 文件大小:3947
    • 提供者:qiebaiying
  1. matrix

    0下载:
  2. 在Linux下分别用Ptread线程和一般的方法编矩阵乘法,比较两者的差异。-we use Pthread and the general method to implement the matrix multiplication,and compare the difference between the two methods.
  3. 所属分类:Driver develop

    • 发布日期:2017-04-24
    • 文件大小:81456
    • 提供者:He Zhanpeng
  1. pc

    5下载:
  2. 天津大学并行计算大作业代码及实验报告。 包括: 1.利用Pthread并行实现求Pi和Jacobi迭代 2.利用MPI并行实现Jacobi迭代 3.hadoop下的Mapreduce实现Wordcount算法-Tianjin University of parallel computing job code and lab reports. Include: (1) the use of parallel implementation Pthread seeking Pi and
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-05-17
    • 文件大小:4210062
    • 提供者:李晨
  1. lab

    0下载:
  2. 国外操作系统课程编程实验及答案,包括计数,运算,pthread,thread创建运用等-lab of oprerating systems(the use of thread and pthread, etc)
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-05-07
    • 文件大小:1394225
    • 提供者:wanghongguang
  1. thread_attr

    0下载:
  2. 线程属性的设置,创建一个具有绑定和分离属性的线程,而且主线程通过一个finish-flag标志变量来获得线程结束的消息,而且不调用pthread-join()函数-Thread attributes Settings, create a thread binding and separation properties, and the main thread through a finish- flag symbol variables to get the message thread end
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-12
    • 文件大小:655
    • 提供者:江其雄
  1. warehose

    0下载:
  2. linux下的仓库物联网系统 linux下的仓库物联网系统 linux下的仓库物联网系统 -#include<stdio.h> #include<sys/types.h> #include<sys/ipc.h> #include<sys/msg.h> #include<stdlib.h> #include<unistd.h> #include<string.h> #include<
  3. 所属分类:Driver develop

    • 发布日期:2017-04-14
    • 文件大小:4316
    • 提供者:sunguangjiang
  1. 0.c.tar

    0下载:
  2. 经典的线程例子,使用 pthread 线程库创建两个线程,两个线程都要访问共享变量counter,按照源程序的逻辑,两个线程各循环 5 次,每次循环对 counter 变量加 1,最后打印的结果应该是 10。但是因为线程的特性,两个线程同步执行,所以结果是6,这是很有意思的事情。-The classic example of a thread, the thread using pthread library to create two threads, two threads must acc
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-11
    • 文件大小:618
    • 提供者:zjuuuu
  1. 1.tar

    0下载:
  2. 经典的互斥锁线程例子,使用 pthread 的互斥锁机制,使得程序运行的结果正确,使用 pthread 线程库创建两个线程,两个线程都要访问共享变量counter,按照源程序的逻辑,两个线程各循环 5 次,每次循环对 counter 变量加 1,最后打印的结果是 10。-The classic example of mutex thread using pthread mutex lock mechanism, so that the results of the program is runn
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-12
    • 文件大小:712
    • 提供者:zjuuuu
  1. thread_pool

    0下载:
  2. 基于pthread的线程池的VC实现,可集成到多线程系统中使用。-implementation of thread pool based on PThread. developed under VC2008
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-24
    • 文件大小:70469
    • 提供者:无名
  1. pthread

    0下载:
  2. same as pthread_cond_timedwait, except the abstime given refers to the CLOCK_MONOTONIC clock instead, to avoid any problems when the wall-clock time is changed brutally. -same as pthread_cond_timedwait, except the abstime given refers to the CLOC
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-14
    • 文件大小:3225
    • 提供者:pangquewin
  1. atalk

    0下载:
  2. Pthread-specific allocator.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-14
    • 文件大小:3788
    • 提供者:fiucnqq
« 1 2 3 4 5 67 8 »
搜珍网 www.dssz.com