Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - pipes
Search - pipes - List
用汇编编的匿名管道,支持win98/win2000/xp-Compilation made by the anonymous pipes, support win98/win2000/xp
Update : 2025-02-17 Size : 3kb Publisher : 剑神狂

windows管道屏保源码,看看别人微软怎么写代码-windows screensaver source pipeline to see how other people write code Microsoft
Update : 2025-02-17 Size : 59kb Publisher : yangyng

利用命名管道技术,在进程间进行通信的例程。希望和大家交流。-use named pipes, in the process of communication between the routines. And we hope that the exchanges.
Update : 2025-02-17 Size : 67kb Publisher : 彭明

利用命名管道邮槽来实现进程间的通信,程序包括客户端和服务端-use named pipes Post chutes to achieve inter-process communication, procedures, including client and server
Update : 2025-02-17 Size : 67kb Publisher : 黄磊

此程序是在MFC下分别用匿名管道,命名管道和邮槽3种方法实现的进程之间的通信 -this procedure is the MFC respectively anonymous pipeline named pipes and mail chutes three different methods to achieve the communication process between the
Update : 2025-02-17 Size : 198kb Publisher : zhaodetao

详细讲解进程间通讯的四种方式:剪贴板、匿名管道、命名管道和邮槽。并比较分析这几种进程间通信的优点和缺点。-explain in detail the communication process in four ways : the clipboard, anonymous pipes, named pipes and mail chutes. Analysis and comparison of several inter-process communication advantages and disadvantages.
Update : 2025-02-17 Size : 229kb Publisher : 李佳明

管道(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.
Update : 2025-02-17 Size : 6kb Publisher : 王晓鹏

介绍NRF24L01的多通道(Multiple Pipes),其中文件nrf24l01.c实现此射频芯片在多通道下的通信,多发单收,同样提供了发、发的HEX文件便于实验。-NRF24L01 introduced multi-channel (Multiple Pipes), which documents the achievement of this nrf24l01.c RF chips in a multi-channel communications, multi-single-admission, provided the same hair, HEX documents issued to facilitate the experiment.
Update : 2025-02-17 Size : 190kb Publisher : yinglun

DL : 0
VxWorks入门例程,包括基于Wind与POSIX的任务调度与通信(信号量、消息队列、管道)。-It is a package of some examples,which includes ones about task scheduling & communication (using semaphore & message queue & pipes) based on Wind & POSIX.
Update : 2025-02-17 Size : 12kb Publisher : 李铮

命名管道.pdf 介绍命名管道的原理和应用实现。对于进程间通信是个很好的东西。-Named Pipes. Pdf named pipe to introduce the principles and applications. For inter-process communication is a good thing.
Update : 2025-02-17 Size : 916kb Publisher : danny

DL : 0
Linux进程间通信小例子,包括管道,命名管道,信号,共享内存,消息队列等-Linux small example of the process of communication, including pipes, named pipes, signals, shared memory, message queues, etc.
Update : 2025-02-17 Size : 4kb Publisher : owenbbkp

pipes communication-pipes communication...
Update : 2025-02-17 Size : 44kb Publisher : SiRuS

1、 用C语言写一个程序名字为procs4,该程序运行过程中共有4个进程,procs4程序(父进程)创建2个子进程p1和p2,p1子进程再创建一个子进程p3。4个进程完成如下工作: 父进程并打印字符串“I am main process”;p1子进程打印“I am child process p1”字符串;p2子进程打印“I am child process p2”;子进程p3打印字符串“I am child process p3”,然后使用exec(族)系统调用打印当前目录下文件和子目录下的详细信息。并且每个进程的要打印自己的pid。 2、 使用任何一种通信机制实现p1进程和p2进程之间的通信,可以使用的通信机制如:管道、消息队列、共享内存等。P1进程发送“Child process p1 is sending a message!”信息给p2进程,P2进程发送“Child process p2 is sending a message!” 信息给p1进程,p1和p2两个子进程接受信息后分别打印着两个字符串。 3、 编写程序实现生产者-消费者问题。使用linux的Pthread线程库,创建生产者和消费者两个线程,生产者线程计算当前的时间并放入缓冲区,每次计算一个时间数据;消费者线程从缓冲区读出并打印生产者计算的时间,每次打印一个时间数据。缓冲区大小为5个,生产和消费的消息数为10个,即生产和消费分别为10次。-1, using C language to write a program named procs4, the program is running a total of four processes, procs4 process (parent process) to create two sub-processes p1 and p2, p1 sub-process re-creates a child process p3. 4 key process to complete the following work: The parent process and print the string "I am main process" p1 child process print "I am child process p1" string p2 child process print "I am child process p2" child process p3 print the string "I am child process p3 ", and then use the exec (tribe) system call to print the current directory files and subdirectories under the details. And each process, you want to print their own pid. 2, using any kind of communication mechanism to achieve the p1 and p2 the process of communication between processes, you can use the communication mechanisms such as: pipes, message queues, shared memory, and so on. Process P1 sends "Child process p1 is sending a message!" Message to the p2 process, P2 process sends "Child process p2 i
Update : 2025-02-17 Size : 2kb Publisher : 杨子坤

初学者很好的实验源码,包括任务创建管理、任务间信号量的通信、消息队列、管道等-Good test source for beginners, including the task of creating management, semaphore communication between tasks, message queues, pipes, etc.
Update : 2025-02-17 Size : 43kb Publisher : sjf

DL : 0
进程间通讯,用来控制WEB服务的请求监控-PIPES COMMU
Update : 2025-02-17 Size : 59kb Publisher : 凡人

Pipes used in operating system
Update : 2025-02-17 Size : 18kb Publisher : PRACHI

This source code implements the use of pipes as in intercommunication process using pipes.
Update : 2025-02-17 Size : 1kb Publisher : Aj Prameswari

C Code simulating hare and turtle race game.Program takes input from the file input.txt. Implement inter process communication using pipes.
Update : 2025-02-17 Size : 2kb Publisher : openglCoder

Channels and pipes with frictional and singular pressure drop. Excel spread sheet with Visual Basic functions
Update : 2025-02-17 Size : 907kb Publisher : Karl

named pipes , qt c/c++
Update : 2025-02-17 Size : 2kb Publisher : catherina
« 12 3 4 5 6 7 8 9 10 ... 18 »
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.