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

搜索资源列表

  1. thrmgr

    0下载:
  2. linux下的线程池,其中使用了条件变量,互斥锁等保持线程同步的变量!
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:8872
    • 提供者:王博
  1. os(linuxshellthreadprocess)

    0下载:
  2. liunx下的shell实现;进程、线程同步的实现;I/O系统调用的比较(mmap)——操作系统的课程设计
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:1189159
    • 提供者:xu
  1. chengxuyuanma

    0下载:
  2. 用多线程同步方法解决读者阅览问题 1) 每个读者进入阅览室后,即时显示“Entered” 及其线程自定义标识,还同时显示阅览室共有几名顾客及其所坐的位置。 2) 至少有10个读者,每人阅览至少3秒钟。 3) 多个读者须共享操作函数代码。 2总的设计思想及系统平台、语言、工具: 设计思想:程序设定的是10个读者和5个座位,对读者进行编号,依次进入阅览室读书,为每一座位列一表目,包括座号和读者号等,读者离开时要登出,即消掉登记的信息。 系统平台:LINUX 语言:C语言
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:864
    • 提供者:谢冷阳
  1. 用多进程同步方法解决生产者-消费者问题

    0下载:
  2. 所属分类:Linux/Unix编程

    • 发布日期:2008-12-07
    • 文件大小:49152
    • 提供者:hello_cy
  1. shared-memory

    0下载:
  2. 利用信号量,锁,共享内存来实现线程同步的很好的例子-Using semaphores, locks, shared memory to achieve a good example of thread synchronization
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-09
    • 文件大小:1312384
    • 提供者:常顺
  1. pthread

    1下载:
  2. linux下的多线程的创建及信号同步,信号量,互斥量-under linux to create multi-threaded and signal synchronization, semaphores, mutex volume
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-30
    • 文件大小:26502
    • 提供者:wuqian
  1. Reader-Writer

    0下载:
  2. reader—writer problem 多线程同步算法 linux下实现-reader-writer problem linux multithreaded synchronization algorithm to achieve
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-29
    • 文件大小:10066
    • 提供者:小贺
  1. readerwriter

    0下载:
  2. 在Linux下用多线程同步方法解决读者-写者问题(Reader-Writer Problem) -In Linux, use the multi-thread synchronization solution to the reader- writer problem (Reader-Writer Problem)
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-27
    • 文件大小:113373
    • 提供者:孙芸芸
  1. POSIX

    0下载:
  2. posix多线程程序设计,进程线程,线程控制,线程同步,线程模型-posix multithreaded programming, process threads, thread control, thread synchronization, thread model
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-05-24
    • 文件大小:8444558
    • 提供者:litan
  1. grid_thread

    0下载:
  2. LINUX下多线程序,线程同步实例,实现了线程管理,可直接使用到工程中.-LINUX under the multi-line process, thread synchronization instance, to achieve the thread management can be used directly to the project
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-31
    • 文件大小:6380
    • 提供者:yangguang
  1. pthread_sync_and_mutual

    0下载:
  2. linux多线程极大方便了程序编写,但同时必须考虑线程同步、互斥问题。 示例代码给出了利用信号量实现P、V操作,从而保证多线程同步、互斥。-linux multithread programming is very convenient, but we must pay attention to synchronization and mutual exclusion. The sample code shows us how to ensure multi-thread synch
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-03
    • 文件大小:5682
    • 提供者:y
  1. thread-test.tar

    0下载:
  2. 一个关于linux线程的互斥量,条件变量,信号量的例子,看完了明白互斥量等线程同步的基本使用方法-A thread on linux mutex example, read the understand the basics of using a mutex
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-24
    • 文件大小:838
    • 提供者:杨永
  1. main1

    0下载:
  2. 创建线程 同步控制 条件变量三者结合操作-Create a thread synchronization control variable combination of the three operating conditions
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-11
    • 文件大小:693
    • 提供者:周东民
  1. cond

    0下载:
  2. linux多线程同步控制实例代码 可以用cond_wait, cond_signal控制线程同步-linux multithread syncronization 可以用cond_wait, cond_signal控制线程同步
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-11-17
    • 文件大小:8569
    • 提供者:steven
  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. Linux_sem

    0下载:
  2. Linux下信号量的使用方法,通过这个例子可以学会Linux下的线程同步方法-Under Linux semaphore usage, thread synchronization method by the example under Linux can learn
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-12
    • 文件大小:700
    • 提供者:邵小龙
  1. snake2

    0下载:
  2. linux下的小游戏,贪吃蛇,使用进程线程同步通信-Games under linux, Snake, using synchronous communication process threads
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-05-27
    • 文件大小:10097664
    • 提供者:CXJ
  1. nachos2

    0下载:
  2. nachos02 实现线程同步 操作系统基于Linux环境的实验,在nachos01的基础上进行的实验二-nachos02 Achieve thread synchronization.On operating system,a test based on nachos 01
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-05-04
    • 文件大小:250978
    • 提供者:戴敏旗
  1. mutex

    0下载:
  2. 在线程实际运行过程中,经常需要多个线程保持同步。这时可以用互斥锁来完成任务。(Threads often require multiple threads to keep synchronization during the actual operation of the thread. You can then use the mutex to complete the task.)
  3. 所属分类:Linux/Unix编程

    • 发布日期:2017-12-21
    • 文件大小:1024
    • 提供者:Melodyluer
  1. thread_queue

    0下载:
  2. 线程池 使用 并行处理;多线程使用时最佳选择;收发同步等操作均可以使用(thread pool code;for multi-thread using)
  3. 所属分类:Linux/Unix编程

    • 发布日期:2018-01-08
    • 文件大小:1024
    • 提供者:suzaichuan
« 12 3 »
搜珍网 www.dssz.com