搜索资源列表
win2k named pipe enumeration
- 列举win2k named pipe, 使用本机API,适合初学者学习系统编程-The code enumerates WIN2K NAMED PIPE which is used local API and suit to learner who is studying system programming.
lessonprocess
- 命名管道充分利用了Windows NT和Windows 2000内建的安全机制。 将命名管道作为一种网络编程方案时,它实际上建立了一个客户机/服务器通信体系,并在其中可靠地传输数据。 命名管道是围绕Windows文件系统设计的一种机制,采用“命名管道文件系统(Named Pipe File System,NPFS)”接口,因此,客户机和服务器可利用标准的Win32文件系统函数(例如:ReadFile和WriteFile)来进行数据的收发。 -named pipe full advan
linux进程间通信的例子
- 用简单的例子实现了用命名管道实现进程间通信-simple example of the realization of the named pipe used to achieve inter-process communication
showp2p_namedpipes_demo
- VC++实现管道的一个例子命名管道在进程通信中有重要作用.-VC pipeline examples of a named pipe communication in the process plays an important role.
demoForNamedPipe.对命名管道应用的demo示例
- 对命名管道应用的demo示例,有助于理解学习,很不错,Demo applications on the named pipe example, helps to understand the study, very good
scullpipe
- 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
NameFIFOExample
- 给出一个在Linux不同程序间通过命名管道进行通信的实例。-Linux is given a different inter-process communication through named pipe instance.
FIFO
- 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)
pipe
- 管道是UNIX系统和类UNIX系统都支持的通信机制,它也是进程间通信(IPC,Inter-Process Communication)最古老的形式之一。管道是半双工的,如果要实现双向通信,需要建立两个管道。管道只能用于具有亲缘关系的进程间进行通信,如果两个完全无关的进程进行通信,则需要使用有名管道,即FIFO。 本实验父进程从控制台读数据,并向管道中写字符串。子进程将父进程经由管道传输过来的字符进行大小写互转,然后将装换后的字符送回父进程。 实验环境 Redhat9.0-Pipeli
pipe
- 用于测试进程间通过有名管道的通信,挺好用的-Used to test the inter-process communication through named pipes, very good use
111
- linux下的管道应用,此为命名管道,能够实现文件的读写操作-Under Linux piping applications, this is named pipe, can realize the file has read and write operations
TQ-2440fifo_source_code
- 在Linux学习中,无名管道在开发板上运行的源代码。-Linux learning, the named pipe on the development board running the source code.
homework2
- 编写基于管道的消息队列,该消息队列采用管道进行消息发送、存储、传递及接收。该消息队列应用于多线程环境时要保证线程是安全的;所采用的管道可以是由pipe创建的,也可以是命名管道;该消息队列能够接收CLMessage继承体系的消息;该消息队列能融入到本课程所提供的程序库中,能支持线程之间的通信(即需要提供发送消息的通信类,以及消息循环的管理类)。-The preparation of a pipeline-based message queue, the message queue using th
fifo
- 有名管道,双方都可读写功能,实现双向通信。-Named pipe to both read and write capabilities, two-way communication.
SearchSql
- SQL Server命名管道扫描器,扫描一段网络内的Microsoft SQL Server数据库。-SQL Server named pipe scanner Scans a network within the Microsoft SQL Server database.
data
- 编写一程序,实现程序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.
ctrl_iface_named_pipe
- WPA Supplicant / Windows Named Pipe -based control interface.
fifocliserv
- 本代码用于讲解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
pipe
- linux下的命名管道编程,属于进程间通信的一种机制, 用于不同进程间的通信,可作为参考-Named Pipes programming under linux, a part of inter-process communication mechanism for communication between different processes can be used as a reference
Win32PipeStream
- The official documentation states that the name of a given named pipe cannot be more than 256 characters long.