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

搜索资源列表

  1. win2k named pipe enumeration

    0下载:
  2. 列举win2k named pipe, 使用本机API,适合初学者学习系统编程-The code enumerates WIN2K NAMED PIPE which is used local API and suit to learner who is studying system programming.
  3. 所属分类:弱点检测代码

    • 发布日期:2008-10-13
    • 文件大小:1.92kb
    • 提供者:王杰
  1. lessonprocess

    0下载:
  2. 命名管道充分利用了Windows NT和Windows 2000内建的安全机制。 将命名管道作为一种网络编程方案时,它实际上建立了一个客户机/服务器通信体系,并在其中可靠地传输数据。 命名管道是围绕Windows文件系统设计的一种机制,采用“命名管道文件系统(Named Pipe File System,NPFS)”接口,因此,客户机和服务器可利用标准的Win32文件系统函数(例如:ReadFile和WriteFile)来进行数据的收发。 -named pipe full advan
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:240.25kb
    • 提供者:李思川
  1. linux进程间通信的例子

    0下载:
  2. 用简单的例子实现了用命名管道实现进程间通信-simple example of the realization of the named pipe used to achieve inter-process communication
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:2.14kb
    • 提供者:wf
  1. showp2p_namedpipes_demo

    0下载:
  2. VC++实现管道的一个例子命名管道在进程通信中有重要作用.-VC pipeline examples of a named pipe communication in the process plays an important role.
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:18.18kb
    • 提供者:小王
  1. demoForNamedPipe.对命名管道应用的demo示例

    0下载:
  2. 对命名管道应用的demo示例,有助于理解学习,很不错,Demo applications on the named pipe example, helps to understand the study, very good
  3. 所属分类:系统编程

    • 发布日期:2014-04-14
    • 文件大小:80.16kb
    • 提供者:yushier
  1. scullpipe

    0下载:
  2. linux下驱动程序。可以实现简单的命名管道功能。参考《linux设备驱动程序》第六章。 用make编译,sudo insmod scullpipe.ko装载,sudo rmmod scullpipe卸载。装载后根据/proc/devices中设备号用mknod创建设备文件。-drivers under linux. Can achieve a simple named pipe functions. Reference to linux device drivers Chapter VI
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-02
    • 文件大小:153.98kb
    • 提供者:肖皓
  1. NameFIFOExample

    0下载:
  2. 给出一个在Linux不同程序间通过命名管道进行通信的实例。-Linux is given a different inter-process communication through named pipe instance.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-02
    • 文件大小:942byte
    • 提供者:lf
  1. FIFO

    0下载:
  2. Linux下用命名管道FIFO写的进程间通信程序(经典集合,用gcc编译器,可直接使用,吐血奉送)-FIFO under Linux using named pipe communication between the process of writing procedures (classical set, with the gcc compiler, can be used directly, vomiting blood Complimentary)
  3. 所属分类:Linux/Unix编程

    • 发布日期:2017-03-28
    • 文件大小:24.14kb
    • 提供者:FarEast8612
  1. pipe

    0下载:
  2. 管道是UNIX系统和类UNIX系统都支持的通信机制,它也是进程间通信(IPC,Inter-Process Communication)最古老的形式之一。管道是半双工的,如果要实现双向通信,需要建立两个管道。管道只能用于具有亲缘关系的进程间进行通信,如果两个完全无关的进程进行通信,则需要使用有名管道,即FIFO。 本实验父进程从控制台读数据,并向管道中写字符串。子进程将父进程经由管道传输过来的字符进行大小写互转,然后将装换后的字符送回父进程。 实验环境 Redhat9.0-Pipeli
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-05
    • 文件大小:899byte
    • 提供者:tiger
  1. pipe

    0下载:
  2. 用于测试进程间通过有名管道的通信,挺好用的-Used to test the inter-process communication through named pipes, very good use
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-03
    • 文件大小:1.18kb
    • 提供者:lxdong
  1. 111

    0下载:
  2. linux下的管道应用,此为命名管道,能够实现文件的读写操作-Under Linux piping applications, this is named pipe, can realize the file has read and write operations
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-11
    • 文件大小:1.02kb
    • 提供者:vivian
  1. TQ-2440fifo_source_code

    0下载:
  2. 在Linux学习中,无名管道在开发板上运行的源代码。-Linux learning, the named pipe on the development board running the source code.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-03
    • 文件大小:1.31kb
    • 提供者:林东育
  1. homework2

    0下载:
  2. 编写基于管道的消息队列,该消息队列采用管道进行消息发送、存储、传递及接收。该消息队列应用于多线程环境时要保证线程是安全的;所采用的管道可以是由pipe创建的,也可以是命名管道;该消息队列能够接收CLMessage继承体系的消息;该消息队列能融入到本课程所提供的程序库中,能支持线程之间的通信(即需要提供发送消息的通信类,以及消息循环的管理类)。-The preparation of a pipeline-based message queue, the message queue using th
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-05-11
    • 文件大小:2.48mb
    • 提供者:熊涛
  1. fifo

    0下载:
  2. 有名管道,双方都可读写功能,实现双向通信。-Named pipe to both read and write capabilities, two-way communication.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-12-09
    • 文件大小:11.75kb
    • 提供者:冀鹏霞
  1. SearchSql

    0下载:
  2. SQL Server命名管道扫描器,扫描一段网络内的Microsoft SQL Server数据库。-SQL Server named pipe scanner Scans a network within the Microsoft SQL Server database.
  3. 所属分类:Scanner

    • 发布日期:2017-11-17
    • 文件大小:2.16mb
    • 提供者:amily
  1. data

    0下载:
  2. 编写一程序,实现程序a通过读取一个文件,把文件内容写入一个有名管道.然后程序b读取有名管道的内容,重新写为一个新的文件。-Write a program, the program by reading a file, the contents of the file is written to a named pipe. Program then b to read the contents of the named pipe, re-written as a new file.
  3. 所属分类:Driver develop

    • 发布日期:2017-11-16
    • 文件大小:527byte
    • 提供者:kingwang
  1. ctrl_iface_named_pipe

    0下载:
  2. WPA Supplicant / Windows Named Pipe -based control interface.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-11-07
    • 文件大小:4.23kb
    • 提供者:sisanai
  1. fifocliserv

    0下载:
  2. 本代码用于讲解unix 环境下网络编程中的有名管道,这是一个使用有名管道的服务器和客户端的例子-This code is used to explain the unix network programming environment named pipe, which is an example of the server and client to use named pipes
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-15
    • 文件大小:5.97kb
    • 提供者:wy
  1. pipe

    0下载:
  2. linux下的命名管道编程,属于进程间通信的一种机制, 用于不同进程间的通信,可作为参考-Named Pipes programming under linux, a part of inter-process communication mechanism for communication between different processes can be used as a reference
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-11
    • 文件大小:920byte
    • 提供者:deng
  1. Win32PipeStream

    0下载:
  2. The official documentation states that the name of a given named pipe cannot be more than 256 characters long.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-14
    • 文件大小:3.28kb
    • 提供者:mundehn
« 12 »
搜珍网 www.dssz.com