Welcome![Sign In][Sign Up]
Location:
Search - PIPE

Search list

[OS programlessonprocess

Description: 命名管道充分利用了Windows NT和Windows 2000内建的安全机制。 将命名管道作为一种网络编程方案时,它实际上建立了一个客户机/服务器通信体系,并在其中可靠地传输数据。 命名管道是围绕Windows文件系统设计的一种机制,采用“命名管道文件系统(Named Pipe File System,NPFS)”接口,因此,客户机和服务器可利用标准的Win32文件系统函数(例如:ReadFile和WriteFile)来进行数据的收发。 -named pipe full advantage of the Windows NT and Windows 2000 built-in security system system. To be named as a pipeline network programming package, which is actually the establishment of a client/server communication system, and in which reliable data transmission. A named pipe is on the Windows file system design of a mechanism, "Named Pipe File System (Named Pipe File System, NPFS) "interface, therefore, client and server can use standard Win32 file system functions (such as : ReadFile and WriteFile) data to the transceiver.
Platform: | Size: 245760 | Author: 李思川 | Hits:

[Otherpopeconnect

Description: 实现进程的管道通信。用系统调用pipe( )建立一管道,二个子进程P1和P2分别向管道各写一句话: Child 1 is sending a message! Child 2 is sending a message! 父进程从管道中读出二个来自子进程的信息并显示(要求先接收P1,后P2)。 -process of the realization of the communication channel. With system call pipe () to establish a pipeline, the process of two-P1 and P2 respectively to the pipeline was a sentence : Child 1 is sending a message! Child 2 is sending a message! Father process from the pipeline read out from the two sub-process and display information (required first to receive P1, After P2).
Platform: | Size: 2048 | Author: 钟洁 | Hits:

[Other systemsPDS-Pipe

Description: 采用ANSYS软件的APDL语言编写的两个命令流文件,用于计算含缺陷管道的失效概率,将参数稍作改动,可用于其它结构的可靠性分析-using ANSYS APDL preparation of the two documents order flow, used in the calculation of pipeline containing defects failure probability of parameters minor modifications, can be used for other structural reliability analysis
Platform: | Size: 3072 | Author: 文尧 | Hits:

[OS DevelopDLLCallDemo

Description: 操作系统上机实验报告,进程间的通信,1. 选择Windows2000环境提供的进程通信工具:文件映射(filemap)、管道(Pipe或NamedPipe)、套接字(socket)完成同一机器上的两个进程、不同机器上的两个进程或不同操作系统下的两个进程之间的通信。-experimental operating system on the plane, inter-process communication, 1. Choose Windows 2000 environment, the process of communication tools : File Mapping (filemap) Pipeline (Pipe or NamedPipe) socket (socket) completed on the same machine two processes, different machines on the two different operating systems or process under the two processes of communication.
Platform: | Size: 1002496 | Author: 钱青鱼 | Hits:

[Process-Threadqq_chat

Description: the programe like QQ.Please run the programe named parent first,and build the child.Then you will chat between the parent and child. I use the pipe to achieve the communication .-the programe like QQ.Please run the progr named parent me first, and build the child.Then you will chat between t he parent and child. I use the pipe to achieve the communication.
Platform: | Size: 4039680 | Author: yt | Hits:

[Software Engineeringpipedoc

Description: 管道(Pipe)实际是用于进程间通信的一段共享内存,创建管道的进程称为管道服务器,连接到一个管道的进程为管道客户机。一个进程在向管道写入数据后,另一进程就可以从管道的另一端将其读取出来。匿名管道(Anonymous Pipes)是在父进程和子进程间单向传输数据的一种未命名的管道,只能在本地计算机中使用,而不可用于网络间的通信。-pipes (Pipe) for the actual inter-process communication for shared memory, the creation of a process known as the Pipeline Pipeline server, connecting to a pipe to channel the process of the client. In a process to write to the pipeline, another process can pipeline from the other end to read out. Anonymous pipes (Anonymous Pipes) is the father of the child process and the process of one-way transmission of data not a Naming the channel and the local use of the computer, and may not be used for inter-network communications.
Platform: | Size: 6144 | Author: 王晓鹏 | Hits:

[Windows DevelopPIPE

Description: 算法实现题2-1 输油管道问题 « 问题描述: 某石油公司计划建造一条由东向西的主输油管道。该管道要穿过一个有n 口油井的油 田。从每口油井都要有一条输油管道沿最短路经(或南或北)与主管道相连。如果给定n口油 井的位置,即它们的x 坐标(东西向)和y 坐标(南北向),应如何确定主管道的最优位置, 即使各油井到主管道之间的输油管道长度总和最小的位置?证明可在线性时间内确定主管道 的最优位置。 « 编程任务: 给定n 口油井的位置,编程计算各油井到主管道之间的输油管道最小长度总和。 « 数据输入: 由文件input.txt 提供输入数据。文件的第1 行是油井数n,1£ n£ 10000。接下来n 行是 油井的位置,每行2个整数x和y,-10000£ x,y£ 10000。 « 结果输出: 程序运行结束时,将计算结果输出到文件output.txt 中。文件的第1 行中的数是油井到 主管道之间的输油管道最小长度总和。 输入文件示例 输出文件示例 input.txt output.txt 5 1 2 2 2 1 3 3 -2 3 3 6
Platform: | Size: 66560 | Author: 林总 | Hits:

[Telnet Clientclient

Description: This program is a simple named pipe client that demonstrates the API calls needed to successfully develop a basic named pipe client application. When this application successfully connects to a named pipe, the message "This is a test" is written to the server. There are four basic steps needed to implement a client: 1. Wait for a Named Pipe instance to become available using the WaitNamedPipe() API function. 2. Connect to the Named Pipe using the CreateFile() API function. 3. Send data to or receive data from the server using the WriteFile() and ReadFile() API functions. 4. Close the Named Pipe session using the CloseHandle() API functions.
Platform: | Size: 3072 | Author: sean zhang | Hits:

[Internet-Networkpipe_fork

Description: Linux网络编程。程序创建一个管道,并发起一个新的进程。父进程往管道里写数据,子进程往外读数据。-Linux Network Programming. Procedures to create a pipeline and has initiated a new process. Father of the process of writing data to the pipe, sub-process of reading data out.
Platform: | Size: 1024 | Author: 古月 | Hits:

[Embeded Linuxgpio

Description: gpio驱动 leddrv.c为驱动源程序 writeled.c为应用程序 writeled.c 编译方式 arm-elf-gcc -Wall -O2 -Wl,-elf2flt -o writeled writeled.c leddrv.c 编译方式 arm-elf-gcc -D__KERNEL__ -I你的uClinux目录/linux-2.4.x/include-Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fno-strict-aliasing -fno-common -fno-common -pipe -fno-builtin -D__linux__ -DNO_MM -mapcs-32 -march=armv4 -mtune=arm7tdmi -mshort-load-bytes -msoft-float -DMODULE -c -o leddrv.o leddrv.c -GPIO driver leddrv.c-driven source code for applications writeled.c way writeled.c compiler arm-elf-gcc-Wall-O2-Wl,-elf2flt-o writeled writeled.cleddrv.c way compiler arm-elf-gcc-- you are D__KERNEL__-I of the uClinux directory/linux-2.4.x/include-Wall-Wstrict-prototypes-Wno-trigraphs-O2-fno-strict-aliasing-fno-common-fno-common-pipe-fno-builtin-D__linux__-- DNO_MM-mapcs-32-march = armv4-mtune = arm7tdmi-mshort-load-bytes-msoft-float-DMODULE-c-o leddrv.o leddrv.c
Platform: | Size: 2048 | Author: zhengbo | Hits:

[Communicationnamepipe

Description: 该程序是一个命名管道通信的例子,包括命名管道服务器和命名管道客户端两部分组成-The program is a named pipe communication examples, including the Named Pipes Named Pipes server and the client is composed of two parts
Platform: | Size: 50176 | Author: 白彬 | Hits:

[Embeded Linuxpipeline

Description: samples for pipe line source code -samples for pipe line source code
Platform: | Size: 8192 | Author: 陳陳 | Hits:

[Process-Threadpipe

Description: Linux 下验证管道通信机制。一端发送消息,一端接收消息。-Linux authentication pipeline under the communication mechanism. One end of send messages, receive messages on one end.
Platform: | Size: 4096 | Author: | Hits:

[ERP-EIP-OA-Portalpipe-eval

Description: 著名IT公司ILog的APS高级排产优化引擎,就连SAP、Oracle等ERP中的物料需求计划与生产计划算法都来源于ILog。研究了好久,中间的性线求解算法可真谓难呀-Well-known IT company ILog the APS Senior Scheduling optimization engine, and even SAP, Oracle and other ERP
Platform: | Size: 4195328 | Author: | Hits:

[MultiLanguagepipe

Description: 这可是全球著名IT公司ILog的APS高级排产优化引擎,就连SAP、Oracle等ERP中的物料需求计划与生产计划算法都来源于ILog。我研究了好久,中间的性线求解算法可真谓难呀。-This is the world s leading IT companies ILog the APS Senior Scheduling optimization engine, and even SAP, Oracle and other ERP s MRP and production planning algorithm are derived from the ILog. I have studied for a long time, Central and line algorithm that can be really difficult for me.
Platform: | Size: 4187136 | Author: wl | Hits:

[Embeded Linuxprogram

Description: 工ARM_LINUX的几个源代码,fork,pipe,fifo,及共享内存的实验源程序-Several workers ARM_LINUX source code, fork, pipe, fifo, and shared memory of the experimental source
Platform: | Size: 71680 | Author: yxh | Hits:

[Process-Threadpipe

Description: 转自网上,非原创。简单的进程管道通信编程实例,通过建立管道,调用cmd.exe-Transfer from the Internet, non-original. Simple process of pipeline communication programming examples, through the establishment of channels, call cmd.exe
Platform: | Size: 1024 | Author: 王欣欣 | Hits:

[Windows CEPipe

Description: 一个windows ce 上接管道的小游戏, EVC的-Then windows ce on a pipeline game, EVC s
Platform: | Size: 71680 | Author: 李春娥 | Hits:

[Linux-Unixroot-ipc-fifo-examples.tar

Description: UNIX/Linux环境下使用有名管道(FIFO)的例子。-UNIX/Linux environment using well-known pipe (FIFO) example.
Platform: | Size: 1024 | Author: root | Hits:

[JSP/Javacode

Description: KWIC系统 采用管道/过滤器风格实现-KWIC system pipe/filter style realize
Platform: | Size: 26624 | Author: zhaoyan | Hits:
« 1 2 34 5 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net