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

搜索资源列表

  1. 共享内存

    1下载:
  2. 共享内存示范代码,该程序给出了,多线程共用内存的事例-shared memory model code, the program is a shared memory multi-threaded stories
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:15474
    • 提供者:高温
  1. 创建&写共享内存

    0下载:
  2. 创建/写共享内存的c语言程序-create / write shared memory c Language Program
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:1470
    • 提供者:王莉
  1. 读共享内存

    0下载:
  2. 读共享内存的c语言程序-Reading shared memory c Language Program
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:1248
    • 提供者:王莉
  1. 创建写共享内存

    0下载:
  2. 创建写共享内存的例子,学习ipc的好-create shared memory example, a good learning IPS as moving
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:1465
    • 提供者:无路
  1. ShareMem

    0下载:
  2. VC下的共享内存类,可以添加删除数据。共两个文件ShareMem.cpp和ShareMem.h-VC under the shared memory class, you can add delete data.
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-02
    • 文件大小:2350
    • 提供者:李峰
  1. ShareMemory

    0下载:
  2. Windows下共享内存工具库,包含源代码和例子程序(服务器与客户端)-Shared memory under Windows tool library, including source code and sample applications (server and client)
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-24
    • 文件大小:298310
    • 提供者:胡欢
  1. com_test

    0下载:
  2. linux/unix下使用unix域套接字通信与使用共享内存+信号量通信方式的用时测试比较代码。-linux/unix use unix domain socket communication and the use of shared memory+ semaphore method of communication when the test code.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-26
    • 文件大小:2732
    • 提供者:
  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. sharedmemry

    0下载:
  2. linux 多线程编程, 共享内存传递数据,为了实习多个线程同时访问数据,需要互斥,保证数据同步等-linux multithreaded programming, shared memory to transfer data, in order to practice multiple threads simultaneously access the data, need mutual exclusion, to ensure data synchronization
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-29
    • 文件大小:16072
    • 提供者:郭东东
  1. linuxIPC

    1下载:
  2. Linux 进程间通信实例包括:共享内存、管道、套接字域、消息队列、信号、信号灯;注释详细,全部经过编译验证-Examples include the Linux inter-process communication: shared memory, pipe, socket domain, message queues, signals, lights comment in detail, all compiled authentication
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-28
    • 文件大小:8261
    • 提供者:
  1. sharemem

    0下载:
  2. linux下共享内存的简单实例 可以很好的理解共享内存是怎么回事 很简单的-shared memory under linux simple example can be a very good understanding of how shared memory is a very simple matter
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-30
    • 文件大小:10390
    • 提供者:荣文军
  1. SharedMemory

    0下载:
  2. 共享内存使用的程序 -The app using memory share
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-11
    • 文件大小:33354
    • 提供者:站长
  1. 使用内存映射文件共享数据的例子 FileMap

    1下载:
  2. 使用内存映射文件共享数据的例子- The use memory maps the document sharing data the example
  3. 所属分类:系统编程

    • 发布日期:2013-04-10
    • 文件大小:74301
    • 提供者:廖锦伦
  1. reader_writer3

    1下载:
  2. 是一个linux下的共享内存文件,读者写者问题的,还不错-Is a shared memory under linux document, readers write issues, and also a good
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-31
    • 文件大小:7062
    • 提供者:池瑞清
  1. shm

    0下载:
  2. 在类unix中可以方便使用的封装后的共享内存操作的接口。-In unix-type can be user-friendly package after the operation of shared memory interface.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-31
    • 文件大小:1271
    • 提供者:halllock
  1. LinuxProcessCommunication

    5下载:
  2. 创建两个生产者进程和两个消费者进程,生产者进程a需要生成10000个整数,每次都将自己的进程号(用getpid()函数获得)和生成的整数放入共享内存中(共享内存大小为64Byte)。生产者b每次从26个英文字母中选一个,并将自己的进程号和选中的字母放入共享内存中,直到26个字母全部都选中。消费者进程c负责从共享内存中读取数据生产者进程a的数据并且将这些数据写入文件a.out。消费者进程d从共享内存读取进程b的数据后写入b.out中。-The process of the creation of
  3. 所属分类:Linux-Unix program

    • 发布日期:2014-06-18
    • 文件大小:35121
    • 提供者:ZHANG
  1. 123598

    0下载:
  2. 在VC++ 6.0下利用共享内存、消息实现内部进程通讯 程序名称:resource.h-In VC++ 6.0 use shared memory, message communication procedures to achieve internal process name: resource.h
  3. 所属分类:Windows Kernel

    • 发布日期:2017-05-14
    • 文件大小:150826
    • 提供者:sa
  1. share

    0下载:
  2. 1。创建一共享内存。a进程对共享内存中的某个整型不断加一,另外个进程对他进行减一操作,要求信号量同步。-1. The creation of one shared memory. a process of shared memory in a continuous integer-plus-one, while a process carried out by one of his operations, requested semaphore synchronization.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-13
    • 文件大小:2451
    • 提供者:ak-47
  1. linux_process

    0下载:
  2. 该书详细介绍了linux进程之间通信的几种方式:信号,管道,共享内存等几种方式,并附有详细的实例,是一本不错的新手入门的电子书。-The book details the process of communication between linux in several ways: signals, pipes, shared memory, such as a number of ways, with detailed examples are a good green hand of the
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-16
    • 文件大小:210537
    • 提供者:陈笑天
  1. ipc

    1下载:
  2. Linux进程间通信小例子,包括管道,命名管道,信号,共享内存,消息队列等-Linux small example of the process of communication, including pipes, named pipes, signals, shared memory, message queues, etc.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-29
    • 文件大小:4051
    • 提供者:owenbbkp
« 12 3 4 5 6 7 8 9 10 ... 13 »
搜珍网 www.dssz.com