搜索资源列表

  1. unixprogram

    0下载:
  2. Linux、多进程应用,共享内存,互斥锁应用-Linux, multi-process applications, shared memory, application Mutex
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-14
    • 文件大小:1024
    • 提供者:yang
  1. jincheng1

    0下载:
  2. 通过共享内存实现进程间的通信!这个是进程1!-Through shared memory to achieve inter-process communication! This is the process of 1!
  3. 所属分类:系统编程

    • 发布日期:2024-05-14
    • 文件大小:1024
    • 提供者:李逆
  1. jincheng2

    0下载:
  2. 通过共享内存实现进程间的通信!这个是进程2!-Through shared memory to achieve inter-process communication! This is the process of 2!
  3. 所属分类:其他小程序

    • 发布日期:2024-05-14
    • 文件大小:1024
    • 提供者:李逆
  1. JAVA

    0下载:
  2. JAVA通过共享内存实现进程间的通信!这个是一个完整的代码!-JAVA through the shared memory to achieve inter-process communication! This is a complete code!
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-14
    • 文件大小:2048
    • 提供者:李逆
  1. ICPShareMemory

    0下载:
  2. IPC共享内存例子,用共享内存让两个窗口间相互公用一段内存,实现沟通-IPC shared memory example, using shared memory between two windows so that the common section of memory, the realization of communication
  3. 所属分类:通讯编程

    • 发布日期:2024-05-14
    • 文件大小:94208
    • 提供者:
  1. ISAPI

    0下载:
  2. WinCE ISAPI demo 程序,作为CE中嵌入式web的接口,通过编程ISAPI来完成特定的数据访问,本例完成从内存共享中读取映射,响应用户的http get/post请求-WinCE ISAPI demo program, as a CE in the embedded web interface, through programming ISAPI to complete the specific data access,
  3. 所属分类:Windows编程

    • 发布日期:2024-05-14
    • 文件大小:5120
    • 提供者:tenshionkai
  1. shmemory

    0下载:
  2. 使用共享内存编程,使不同的进程可以通信完成任务 -The use of shared memory programming, the process of bringing people of different communication tasks can be
  3. 所属分类:系统编程

    • 发布日期:2024-05-14
    • 文件大小:1024
    • 提供者:王进
  1. shm_creat

    0下载:
  2. linux环境下 共享内存的简单使用,可以学习共享内存的一般方法-linux environment simple to use shared memory, shared memory can learn the general approach
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-14
    • 文件大小:1024
    • 提供者:derek
  1. reader_writer3

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

    • 发布日期:2024-05-14
    • 文件大小:7168
    • 提供者:池瑞清
  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编程

    • 发布日期:2024-05-14
    • 文件大小:2048
    • 提供者:
  1. DataMan

    0下载:
  2. 共享内存的源代码 ,可以在2003上跨越用户-Shared memory of the source code, you can leap in 2003 on the user
  3. 所属分类:其他小程序

    • 发布日期:2024-05-14
    • 文件大小:20141056
    • 提供者:chen
  1. share(linux)

    0下载:
  2. 这是一个在linux平台上进行内存共享的例子,例子比较短,通俗易懂,是初学者学习的好例子-This is a linux platform to share examples of memory, for example, relatively short, easy to understand, is a good example for beginners to learn
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-14
    • 文件大小:50176
    • 提供者:leezhihui
  1. MemoryMap

    0下载:
  2. 相信对于大家来说,内存映射技术已经是个很熟悉的技术了。在这里我只是作个总结,希望对那些新手朋友有帮助。 内存映射文件通常有两个用途:一是内存映射磁盘文件,这对于大数据文件的处理比较适合;二是共享内存,作为进程间通信的一种方式。 -I believe that we, the memory mapping technology is already very familiar with the technology. H
  3. 所属分类:Windows编程

    • 发布日期:2024-05-14
    • 文件大小:376832
    • 提供者:周晓宇
  1. shm

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

    • 发布日期:2024-05-14
    • 文件大小:1024
    • 提供者:halllock
  1. LinuxProcessCommunication

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

    • 发布日期:2024-05-14
    • 文件大小:34816
    • 提供者:ZHANG
  1. 081212WatchRat

    0下载:
  2. 内存共享的实例,希望对大家有帮助。谢谢 通过FILEMAPPING实现-Examples of shared memory, and they hope to help everyone. Thank you, through the realization of FILEMAPPING
  3. 所属分类:系统编程

    • 发布日期:2024-05-14
    • 文件大小:819200
    • 提供者:
  1. cqwz

    0下载:
  2. 内存共享的实例,希望对大家有帮助。谢谢 通过FILEMAPPING实现-Examples of shared memory, and they hope to help everyone. Thank you, through the realization of FILEMAPPING
  3. 所属分类:系统编程

    • 发布日期:2024-05-14
    • 文件大小:533504
    • 提供者:
  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. 所属分类:系统编程

    • 发布日期:2024-05-14
    • 文件大小:3271680
    • 提供者:sa
  1. demo_ShareMemory

    0下载:
  2. VC编写的共享内存读取的例子,可以用于进程之间的通信-VC prepared to read examples of shared memory that can be used in the process of communication between
  3. 所属分类:Windows编程

    • 发布日期:2024-05-14
    • 文件大小:195584
    • 提供者:dugf
  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 semap
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-14
    • 文件大小:2048
    • 提供者:ak-47
« 1 2 ... 4 5 6 7 8 910 11 12 13 14 ... 44 »

源码中国 www.ymcn.org