CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - 信号量 锁

搜索资源列表

  1. EST406计算机数据采集与软件系统

    0下载:
  2. 连续记录器:任意通道显示;多种时间尺度显示;不丢点连续采集、显示; 全功能的双踪示波器:任意通道中选择显示1~2通道;支持模拟量、开关量;任意放大倍数;锁相功能;波形运算功能;波形局部细化功能;超快速波形显示; 支持模拟量、开关量、脉冲量、频率、热电偶、Pt电阻等多种信号的采 -consecutive record : random access display; Multiple time scale display; Do not lose points for
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:6725
    • 提供者:梁宏波
  1. Deadlock

    0下载:
  2. 死锁的程序演示 用信号量实现的-the procedures used to demonstrate signal to achieve the volume
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:1552
    • 提供者:陈天
  1. linuxdriver_code_tool

    0下载:
  2. 本书是一本介绍Linux设备驱动开发理论、框架与实例的书,本书以Linux 2.6版本内核为蓝本,详细介绍自旋锁、信号量、完成量、中断顶/底半部、定时器、内存和I/O映射以及异步通知、阻塞I/O、非阻塞I/O等Linux 设备驱动理论;字符设备、块设备、TTY设备、I2C设备、LCD设备、音频设备、USB设备、网络设备、PCI设备等Linux设备驱动的架构和框架中各个复杂数据架构和函数的关系,并讲解了大量Linux驱动开发的大量实例,使读者能够独立开发各类Linux设备驱动。-This book
  3. 所属分类:Driver Develop

    • 发布日期:2017-06-16
    • 文件大小:25064728
    • 提供者:keke
  1. pv2

    0下载:
  2. 信号量也称为信号锁,主要应用于进程间的同步和互斥,在用于互斥时,通常作为资源锁。信号量通常通过两个原子操作wait(P)和signal(V)来访问。wait操作使信号量的值+1,signal操作使信号量的值-1。本程序修改wait操作,使之能一次申请多个信号量-Semaphore is also known as signal lock, mainly used in inter-process synchronization and mutual exclusion, are used in
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:8944
    • 提供者:龙海
  1. philosopher

    0下载:
  2. 哲学家进餐问题是荷兰学者Dijkstra 提出的经典问题之一,它是一个信号量机制问题的应用,在操作系统文化史上具有非常重要的地位。对该问题的剖析有助于学生深刻地理解计算机系统中的资源共享、进程同步、死锁等问题,并能熟练地应用信号量来解决生活中的控制流程,即将生活中的控制流程用形式化的方式表达出来。-Dining philosophers problem is that the Dutch scholars Dijkstra classic one of the issues raised, it
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-26
    • 文件大小:41100
    • 提供者:贺美琛
  1. operatingsystemexperiment

    0下载:
  2. 操作系统实验,包括创建进程,进程同步,进程互斥,特别是实现了互锁函数的信号量-Experimental operating system, including the establishment of processes, process synchronization, process of mutually exclusive, especially in the implementation of the semaphore interlocking function
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-29
    • 文件大小:9611
    • 提供者:成炼
  1. 3-1

    0下载:
  2. 进程的同步与通信 多线程编程中关键的一步是保护所有的共享资源,工具主要有互锁函数、临界区和互斥信号量等;另一个实质性部分是协调线程使其完成应用程序的任务,为此,可利用内核中的事件对象和信号。-Process Synchronization and Communication Multi-threaded programming is a key step in the protection of all of the shared resources, tools, mainly i
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:1721
    • 提供者:li yang
  1. Thread_Synchronization

    0下载:
  2. ├─SuspendThread_ResumeThread ├─所有教程_files ├─线程同步 - 关键代码段 ├─线程同步 - 条件变量 ├─线程同步 - 等待函数 ├─线程同步 - 等待定时器 ├─线程同步-互斥 ├─线程同步-互锁函数族 └─线程同步-信号量 学习资料-├ ─ SuspendThread_ResumeThread ├ ─ all the tutorials _files ├ ─ thread synchronization- t
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-06
    • 文件大小:1246464
    • 提供者:chenzifeng
  1. Dphilosopheri

    0下载:
  2. 哲学家进餐问题是荷兰学者Dijkstra 提出的经典问题之一,它是一个信号量机制问题的应用,在操作系统文化史上具有非常重要的地位。对该问题的剖析有助助于学生深刻地理解计算机系统中的资源共享、进程同步、死锁等问题,并能熟练地应用信号量来解决生活中的控制流程,即将生活中的控制流程用形式化的方式表达出来。 -The dining philosophers problem is one of the Dutch scholar Dijkstra' s classic, it is the ap
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-23
    • 文件大小:40907
    • 提供者:zhong
  1. Producer-consumer-model

    0下载:
  2. 生产者消费者模型,用c语言实现模拟内存管理中的生产者和消费者,实现用信号量和锁的使用方法-Model of producers and consumers, producers and consumers in the analog memory management using the c language, the use of semaphores and locks
  3. 所属分类:Other systems

    • 发布日期:2017-11-12
    • 文件大小:12051
    • 提供者:
  1. Eating

    0下载:
  2. 模拟哲学家进餐问题,利用信号量、互斥锁等进行线程间的同步。-Analog dining philosophers problem, the use of semaphores, mutexes, etc. synchronization between threads.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-17
    • 文件大小:278771
    • 提供者:sxm
  1. CSharpMultiThread

    0下载:
  2. 关于C#的多线程的简单示例程序,其中包含了信号量,锁,BackGroudworker等内容的简单使用-A simple C# application source about multi thread!
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-04
    • 文件大小:38432
    • 提供者:学习者
  1. ThreadSynch

    0下载:
  2. VC++ MFC多线程同步实例,信号量,互斥锁,事件,临界资源,精选学习源码,很好的参考资料。-Examples of synchronization, multi thread VC++ MFC semaphores, mutexes, events, critical resources, select learning source code, a good reference.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-17
    • 文件大小:32369
    • 提供者:什锦豆腐
  1. threadSynch

    0下载:
  2. MFC多线程同步实例,信号量,互斥锁,事件,临界资源,精选学习源码,很好的参考资料。-MFC examples of multi-thread synchronization, semaphores, mutexes, events, critical resources, selected learning source, a good reference.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-17
    • 文件大小:501585
    • 提供者:赵焱
  1. nachos02

    0下载:
  2. nachos 系统下使用信号量和条件变量,锁实现对链表和缓冲区中信息的修改,确保线程的同步。-Under the nachos system using semaphores and condition variables, the lock list and buffer to achieve changes to the information, to ensure the synchronization of threads
  3. 所属分类:Other systems

    • 发布日期:2017-04-27
    • 文件大小:12159
    • 提供者:叶飞
  1. OS_test

    0下载:
  2. windows下线程操作,例子,包含线程创建,互斥锁,信号量,消息队列的封装等-Thread windows operating examples, including thread creation, mutexes, semaphores, message queues, packaging, etc.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-29
    • 文件大小:369672
    • 提供者:lipeng
  1. shiyan2

    0下载:
  2. 哲学家进餐问题 #include<stdio.h> #include<semaphore.h> #include<pthread.h> //宏定义信号量个数为5,宏定义0表示思考,宏定义1表示饿,宏定义2表示吃,宏定义(ph_num+4) N表示左,宏定义(ph_num+1) N表示右 #define N 5 #define THINKING 0 #define HUNGRY 1 #define EATING 2 #
  3. 所属分类:CSharp

    • 发布日期:2017-04-11
    • 文件大小:1320
    • 提供者:cc
  1. linux高级编程源码

    0下载:
  2. 包含linux基本使用的各个高级编程的源码,包括网络、进程间通信、文件、信号量、多线程、互斥锁等等
  3. 所属分类:系统编程

  1. RTC学习 l 生产者消费者

    0下载:
  2. 基于RT_thread的线程间调度问题,运用信号量及互斥锁解决线程资源抢占问题(Producer consumer problem)
  3. 所属分类:其他

    • 发布日期:2018-01-07
    • 文件大小:26775552
    • 提供者:
搜珍网 www.dssz.com