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

搜索资源列表

  1. 在VC++ 6.0下利用共享内存、消息实现内部进程通讯

    2下载:
  2. 在VC++ 6.0下利用共享内存、消息实现内部进程通讯-in VC 6.0 using shared memory, message achieving internal communications process
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:3271437
    • 提供者:hkx
  1. 进程间共享内存封装类

    1下载:
  2. 进程间共享内存封装类
  3. 所属分类:进程与线程

    • 发布日期:2010-11-18
    • 文件大小:29012
    • 提供者:casmli
  1. 进程间通讯(一):Window下使用内存映射文件共享数据的例子

    2下载:
  2. Window下使用内存映射文件共享数据的例子 CreateFileMapping OpenFileMapping MapViewOfFile UnFileMapping等函数的具体应用。比较经典,可以直接拷到工程中应用。 使用过程中有问题。发邮件给我帮你解答,39514004@qq.com
  3. 所属分类:系统编程

    • 发布日期:2011-06-29
    • 文件大小:53120
    • 提供者:cnzhuhai
  1. 在VCpp 6.0下利用共享内存、消息实现内部进程通讯 - 副本

    0下载:
  2. 在VCpp 6.0下利用共享内存、消息实现内部进程通讯 ,资源里包含了,客户端和服务器端程序实现源代码。
  3. 所属分类:Windows编程

  1. sm_mz_demo.zip

    0下载:
  2. 共享内存多进程通讯例子,the demo of shared memory multi-process communication
  3. 所属分类:Process-Thread

    • 发布日期:2017-11-08
    • 文件大小:41789
    • 提供者:
  1. pro-com

    1下载:
  2. 进程和进程通信 1.设计一个程序,创建一个子进程,使父子进程合作,协调地完成某一功能。要求在该程序中还要使用进程的睡眠、进程图象改换、父进程等待子进程终止、信号的设置与传送(包括信号处理程序)、子进程的终止等有关进程的系统调用。 2.分别利用UNIX的消息通信机制、共享内存机制(用信号灯实施进程间的同步和互斥)实现两个进程间的数据通信。具体的通信数据可从一个文件读出,接收方进程可将收到的数据写入一个新文件,以便能判断数据传送的正确性(对文件操不熟悉的同学可不必通过读写文件,只要键盘
  3. 所属分类:Other systems

    • 发布日期:2017-04-05
    • 文件大小:6387
    • 提供者:yiyuzhiming
  1. PC

    0下载:
  2. 用VC++6.0实现进程通信,采用的通信方式是共享内存,Server端和Client端可以进行双方通信-With VC++6.0 to achieve the process of communication, the use of means of communication is shared memory, Server-side and Client-side communication can be both
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-22
    • 文件大小:6811535
    • 提供者:741852
  1. File_Map_Server_Client

    0下载:
  2. windows下通过共享内存进行进程间通信的例子,包括server与client-windows through shared memory inter-process communication examples, including the server and client
  3. 所属分类:Communication

    • 发布日期:2017-04-03
    • 文件大小:105073
    • 提供者:morry
  1. MemoryMap

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

    • 发布日期:2017-04-03
    • 文件大小:376628
    • 提供者:周晓宇
  1. ProcessCommunication

    0下载:
  2. Windows 的IPC(进程间通信)机制主要是异步管道和命名管道。(至于其他的IPC方式,例如内存映射、邮槽等这里就不介绍了) 管道(pipe)是用于进程间通信的共享内存区域。创建管道的进程称为管道服务器,而连接到这个管道的进程称为管道客户端。一个进程向管道写入信息,而另外一个进程从管道读取信息。 -Windows of the IPC (interprocess communication) mechanism is asynchronous pipelines and named
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-26
    • 文件大小:153605
    • 提供者:周晓宇
  1. Thread_13

    0下载:
  2. 基于共享内存的进程通信,调用CreatFileMapping,MapViewOfFile,strcpy实现-Shared memory based on the process of communication, call CreatFileMapping, MapViewOfFile, strcpy implementation
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-23
    • 文件大小:29495
    • 提供者:cy
  1. SharedMemoryEx

    0下载:
  2. 用于C#的共享内存映射代码,可在不同进程间交换数据,或用于建立共享内存-For the C# code of the shared memory mapping, you can exchange data between different processes, or for the establishment of shared memory
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-14
    • 文件大小:2701
    • 提供者:hzgzh
  1. FileMap

    0下载:
  2. 实现文件映射,在两个进程间共享内存,在不同进程间传输大文件时,可大幅度提升访问速度。本源码仅为模拟,共享内存为1K,可自行调整。-File mapping, in shared memory between two processes in different inter-process transfer large files, they can significantly enhance the access speed. The only source simulation, shared
  3. 所属分类:Process-Thread

    • 发布日期:2017-05-22
    • 文件大小:6821764
    • 提供者:源泉
  1. ShareMemory_vs

    0下载:
  2. 通过共享内存实现进程通信,vs 2005 实现-process communicate by share memory
  3. 所属分类:Process-Thread

    • 发布日期:2017-06-11
    • 文件大小:18373755
    • 提供者:yuanyuan
  1. vcDEMO

    0下载:
  2. 实现进程之间内存共享,通讯。擦写内存。在不同的进程之间交换数据。-Achieve the shared memory between processes, communication. Erase the memory. In the exchange of data between different processes.
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-03
    • 文件大小:31701
    • 提供者:崔志华
  1. messgagegongxiang

    0下载:
  2. 多个窗口消息共享同一个消息处理函数。由第一个消息参数指定发送窗口的句柄,第二个消息视图却能够为多个其他进程所映射,这些进程共享的是物理存储器的同一个页面。在响应函数中将数据从共享内存复制到本地缓存中,再进行后续的处理。-More than one message share the same window message handler function. A message from the first parameter specifies the window handle to send
  3. 所属分类:Dialog_Window

    • 发布日期:2017-04-06
    • 文件大小:98774
    • 提供者:xianghengfu
  1. communication

    0下载:
  2. 进程间通信,通过共享内存的方式实现进程间通信,即在内存中开辟一个共享内存区域,创建两个控制台应用程序,来检测进程间的通信-Inter-process communication, through the shared memory means to achieve inter-process communication, that is in memory to open a shared memory region, to create two console applications, to
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-10
    • 文件大小:1144
    • 提供者:pipicheng
  1. test

    0下载:
  2. 生成不同id的函数,在多个进程并发调用这些函数时,生成不重复的id,分别用数据库、文件锁、共享内存的方式实现。-Different id generation function of the process of concurrent calls in a number of these functions, the generation of non-repetition of the id, respectively, the database, file locks, shared mem
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:2357
    • 提供者:李抒昌
  1. SHARE_MEMORY_TEST

    0下载:
  2. 该共享内存测试程序,可以实现进程间共享内存通讯,可以用来修改使用。(The shared memory test program, you can achieve inter-process shared memory communication.)
  3. 所属分类:Windows编程

    • 发布日期:2017-12-23
    • 文件大小:23063552
    • 提供者:daluozi
  1. memfd 方式共享内存

    0下载:
  2. memfd 方式共享内存 多进程之间共享 文件句柄,这种方式令人惊叹。
  3. 所属分类:系统编程

« 12 3 4 5 6 7 »
搜珍网 www.dssz.com