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

搜索资源列表

  1. Linuxc

    0下载:
  2. 主要是其于linux c编程,包括了进程通信,进程同步与互斥,以及采用二进制读写文件,还有文档说明
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:64629
    • 提供者:张伟华
  1. LinuxMutiProc

    0下载:
  2. 多进程之间并发执行的实例,IPC通信举例 熟悉进程间的异步同步方式
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:6096
    • 提供者:tongqian
  1. 12_shm

    0下载:
  2. Linux 下进程间通信实例之一——共享内存 使用了信号量用于进程间的同步-Linux, one example of inter-process communication- shared memory semaphore used for synchronization between processes
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-01
    • 文件大小:18658
    • 提供者:hero
  1. Linux

    0下载:
  2. 该文件包含了Linux编程的很多例程包括了多任务编程,多任务间的通信和同步,CAN总线驱动,SD卡驱动等,涵盖面广阔,对于了解Linux编程很有帮助-This file contains a lot of Linux programming routines include multi-task programming, multi-task communication and synchronization between, CAN bus driver, SD card driver and
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-28
    • 文件大小:89322
    • 提供者:何波
  1. philosopher

    0下载:
  2. 模拟“五个哲学家”问题该实验的要点是,解决并发环境下,多进程之间的同步与互斥问题。进程间的同步互斥必然涉及进程间的通信(信息交换)。-Simulation of the " five philosophers" problem of the main points of the experiment, the solution to complicated circumstances, between the multi-process synchronization and
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-12
    • 文件大小:752
    • 提供者:chenlisten
  1. os

    0下载:
  2. 分别利用UNIX的消息通信机制、共享内存机制(用信号灯实施进程间的同步和互斥)实现两个进程间的数据通信。具体的通信数据可从一个文件读出,接收方进程可将收到的数据写入一个新文件,以便能判断数据传送的正确性(对文件操不熟悉的同学可不必通过读写文件,只要键盘输入和输出至屏幕进行比较即可)。 -, Respectively, using the information communication mechanism UNIX, shared memory mechanism (with tr
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-28
    • 文件大小:3137
    • 提供者:一零
  1. 12_msg

    0下载:
  2. Linux 进程间通信实例之一——消息队列 使用了信号量用于进程间的同步。-Linux is one example of inter-process communication- the message queue using semaphores for synchronization between processes.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-16
    • 文件大小:16511
    • 提供者:hero
  1. Comm

    0下载:
  2. 在Linux下完成的对串口进行同步和异步通信。需要使用gcc命令进行编译。不同于Window-Done under the Linux on the serial port synchronous and asynchronous communication. Need to be compiled using the gcc command. Unlike Window
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-06
    • 文件大小:7416
    • 提供者:cr4315
  1. Linux_process_synchronization_communication_docume

    0下载:
  2. Linux进程同步、通信的主要机制经典文档Linux process synchronization, communication documents the main mechanism for classical-Linux process synchronization, the main mechanism for communication classic document Linux process synchronization, communication documents t
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-05
    • 文件大小:80863
    • 提供者:nik
  1. caozuoxitong2

    0下载:
  2. 创建无名管道,实现基于管道的进程间数据通信,掌握管道通信的方法及特征;并进一步理解互斥与同步的含义。-Create anonymous pipe, pipe-based inter-process data communication, control methods and characteristics of communication channels and further understanding of the meaning of mutual exclusion and syn
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-04
    • 文件大小:5269
    • 提供者:万静媛
  1. ProcessCommunication

    0下载:
  2. 进程通信 掌握用邮箱方式进行进程通信的方法,并通过设计实现简单邮箱理解进程通信中的同步问题以及解决该问题的方法。-Process communication way to master the process of using the mailbox communication method, and simple mail through the design process of communication to understand and solve the synchronizat
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-29
    • 文件大小:18612
    • 提供者:陆飞
  1. LinuxMutex

    0下载:
  2. Linux环境进程间通信信号灯,信号灯与其他进程间通信方式不大相同,它主要提供对进程间共享资源访问控制机制。相当于内存中的标志,进程可以根据它判定是否能够访问某些共享资源,同时,进程也可以修改该标志。除了用于访问控制外,还可用于进程同步。-Mutex
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-31
    • 文件大小:141404
    • 提供者:nihao
  1. Linuxmemory

    0下载:
  2. Linux环境进程间通信共享内存,共享内存可以说是最有用的进程间通信方式,也是最快的IPC形式。两个不同进程A、B共享内存的意思是,同一块物理内存被映射到进程A、B各自的进程地址空间。进程A可以即时看到进程B对共享内存中数据的更新,反之亦然。由于多个进程共享同一块内存区域,必然需要某种同步机制,互斥锁和信号量都可以。-Memory
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-17
    • 文件大小:182624
    • 提供者:nihao
  1. Linux21

    0下载:
  2. 书 名: 操作系统原理及应用(Linux21).pdf 作 者:王红 本书介绍操作系统的基本原理及应用,并以Linux操作系统作为具体实例加以说明。全书共9章,主要内容包括操作系统的基本概念、功能、操作系统的发展史及Linux操作系统概述,进程的概念、进程描述、进程控制、进程的同步与互斥、进程通信及线程,作业调度及进程调度、死锁的概念与产生原因以及解决死锁的方法,各种内存管理及分配方法的思想、数据结构、重定位及实现原理,文件的逻辑结构、物理结构及文件系统的构成,操作系统对设备的控制、分
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-05-24
    • 文件大小:8045836
    • 提供者:唐小米
  1. snake2

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

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

    7下载:
  2. 设计并实现一个计算线程与一个I/O线程共享缓冲区的同步与通信,程序要求: 两个线程,共享公共变量a; 线程1负责计算(1到100的累加,每次加一个数); 线程2负责打印(输出累加的中间结果); 主进程等待子线程退出。 -Design and implement a computation thread and an I/O thread shared buffer synchronization and communication, procedural requiremen
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-12
    • 文件大小:981
    • 提供者:刘宇
  1. shared_memory

    1下载:
  2. Linux进程间通信之使用共享内存方式,并且已使用信号量的方式实现文件的同步(Linux process communication shared memory)
  3. 所属分类:Linux/Unix编程

    • 发布日期:2018-01-08
    • 文件大小:1024
    • 提供者:Walker1989
  1. pcm.tar

    0下载:
  2. 在FPGA开发板上实现通信中PCM30/32系统的时分复用,编码,解码,串并行转换,以及同步识别(On the FPGA development board, we complete time division multiplexing, encoding, decoding, serial parallel conversion and synchronization identification of PCM30/32 system in communication.)
  3. 所属分类:Linux/Unix编程

    • 发布日期:2018-05-02
    • 文件大小:724992
    • 提供者:莱恩哈特01
搜珍网 www.dssz.com