搜索资源列表

  1. MDMLSLOT

    0下载:
  2. 是利用 Windows 95/NT IPC (Interprocess communications) 中 MailSlot API,在局域网 ( LAN ) 制作类似 WinPopup 程序,传送讯息的构件 ( 1.14 版,附源码 )
  3. 所属分类:Dephi控件源码

    • 发布日期:2008-10-13
    • 文件大小:17629
    • 提供者:Devin
  1. Linux-IPC

    0下载:
  2. Linux环境进程间通信,介绍了linux系统下进程间通信。-Linux environment for inter-process communications, introduced the linux system inter-process communication.
  3. 所属分类:电子书籍

    • 发布日期:2024-05-13
    • 文件大小:181248
    • 提供者:wei zhang
  1. COS-II

    0下载:
  2. μC/OS从1992年开始为人们熟悉,到现在已经发展为μC/OS-II。ΜC/OS-II最多支持56个任务,其内核为占先式,总是执行就绪态的优先级最高的任务,并支持Semaphore(信号量)、Mailbox(邮箱)、Message Queue(消息队列)等多种常用的进程间通信机制。与大多商用RTOS不同的是,μC/OS-II公开所有的源代码,并可以免费获得,对商业应用收取少量License费用。-μC/OS since 1992 to
  3. 所属分类:其他小程序

    • 发布日期:2024-05-13
    • 文件大小:8192
    • 提供者:ttjj120
  1. Child

    0下载:
  2. 进程间通信的一个小示例程序,初学者适合看看,-Interprocess communication in a small sample application, suitable for beginners to see,
  3. 所属分类:进程与线程

    • 发布日期:2024-05-13
    • 文件大小:28672
    • 提供者:站长办公区
  1. Dllshare2

    0下载:
  2. 动态链接库发放进行进程间通信。直接编译就可以通过,好码!-Issuance of a dynamic link library for interprocess communication. Direct the compiler can, through good code!
  3. 所属分类:通讯编程

    • 发布日期:2024-05-13
    • 文件大小:151552
    • 提供者:张伟平
  1. termsap

    0下载:
  2. 进程间通信示例源代码,包括详细的说明文档-Interprocess communication sample source code, including detailed documentation
  3. 所属分类:通讯编程

    • 发布日期:2024-05-13
    • 文件大小:45056
    • 提供者:dingguanliang
  1. TestSMDlg

    0下载:
  2. 接SharedMemory.h,进程间通信,内存共享的编程代码,对于软件编程来说,是不错的东西-Then SharedMemory.h, interprocess communications, shared memory programming code, for software programming, it is a good thing
  3. 所属分类:通讯编程

    • 发布日期:2024-05-13
    • 文件大小:1024
    • 提供者:chuchu
  1. TestSMDlg

    0下载:
  2. 接SharedMemory.h,进程间通信,共享内存代码,很好的一个例子,希望对大家能有所帮助-Then SharedMemory.h, interprocess communications, shared memory code, an example of good, in the hope that everyone can be helped
  3. 所属分类:通讯编程

    • 发布日期:2024-05-13
    • 文件大小:2048
    • 提供者:chuchu
  1. Clipboard

    0下载:
  2. 利用剪切板进程间通信,在Visual C++中用MFC写成-Interprocess communication using clipboard in Visual C++ Written using MFC
  3. 所属分类:系统编程

    • 发布日期:2024-05-13
    • 文件大小:29696
    • 提供者:tanliwu
  1. ipc

    0下载:
  2. 提供了许多进程间通信的实例程序。用linux下的C语言实现。-Provides many examples of interprocess communication procedures. Under linux using C language.
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-13
    • 文件大小:9216
    • 提供者:jidong
  1. proces

    0下载:
  2. 进程间通信和一些实例举证,分析了进程之间的竞争关系-Interprocess communications and some examples of proof, an analysis of the process of competition between
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-13
    • 文件大小:4096
    • 提供者:tongqian
  1. NamedPipeClt

    0下载:
  2. 利用命名管道实现进程间的通信,本程序为服务器端程序-Realize the use of Named Pipes Interprocess Communication, the procedures for the server-side procedures
  3. 所属分类:进程与线程

    • 发布日期:2024-05-13
    • 文件大小:29696
    • 提供者:Michael
  1. MDMLSLOT

    0下载:
  2. 是利用 Windows 95/NT IPC (Interprocess communications) 中 MailSlot API,在局域网 ( LAN ) 制作类似 WinPopup 程序,传送讯息的构件 ( 1.14 版,附源码 )-Are using Windows 95/NT IPC (Interprocess communications) Medium MailSlot API, in the local area net
  3. 所属分类:Dephi控件源码

    • 发布日期:2024-05-13
    • 文件大小:17408
    • 提供者:Devin
  1. UNIXnetworkprogram2ndEd2ndvol

    0下载:
  2. Unix网络编程,进程间的通信.对于Unix/Linux下实现不同就用程序间的调用很有帮助.-Unix Network Programming, Interprocess Communication. For Unix/Linux under the different procedures used between the call helpful.
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-13
    • 文件大小:20062208
    • 提供者:金刚
  1. ProcessCommunication

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

    • 发布日期:2024-05-13
    • 文件大小:153600
    • 提供者:周晓宇
  1. InterprocessCommunication

    0下载:
  2. Linux下C语言编程--进程通信、消息管理。编程技巧。-C program--Interprocess Communication and message management under Linux.
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-13
    • 文件大小:7168
    • 提供者:卡米灯
  1. Interprocess_Communications_in_Linux

    0下载:
  2. This document provides the good insight of the interprocess communication. It also covers many useful topics such as message queue, shared memory, semaphore and so on.
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-13
    • 文件大小:3558400
    • 提供者:bumpman
  1. Interprocess-communication

    0下载:
  2. 进程间通信与线程间通信分析和总结,一目了然。-Interprocess communication and inter-thread communication
  3. 所属分类:进程与线程

    • 发布日期:2024-05-13
    • 文件大小:5120
    • 提供者:wangbaosong
  1. Interprocess-messaging

    0下载:
  2. 进程间传递消息(发送和接收系统消息)的功能-Interprocess messaging (send and receive system messages )
  3. 所属分类:进程与线程

    • 发布日期:2024-05-13
    • 文件大小:174080
    • 提供者:四大的
  1. OS-interprocess-communication

    0下载:
  2. 操作系统进程通信,包括进程间的四种通讯方式:管道FIFO,信号,消息队列, 共享内存-OS interprocess communication
  3. 所属分类:进程与线程

    • 发布日期:2024-05-13
    • 文件大小:56470528
    • 提供者:
« 12 3 4 5 6 7 8 9 10 »

源码中国 www.ymcn.org