pipes Programming Software Development by smart girl …]hi all I am trying to be much familier with pipes I tried to write a c program that generates the… pipes problem Programming Software Development by evanescence … code. It's about passing a variable between processess using pipes. Each process increments it M times. The program works perfectly… when I change it to using pipes it's a disaster. Creating or using named pipes doesn't seem to work at… Pipes in programming? Programming Software Development by christinetom … anyone know where I could find a good explanation on 'Pipes' in programming. I'm trying to understand how I might… a dos console. As I understand it, the concept of pipes comes into this somehow. I've googled this but am… Re: Pipes in programming? Programming Software Development by Moschops True, it doesn't explain what pipes are. So your question is more "what are pipes" than "how can I… Re: Pipes in programming? Programming Software Development by christinetom Hi Moschops.. thanks,, but it doesn't explain what pipes are. I did read this. I just want to understand concepts such as this. pipes: problem - simplified Programming Software Development by edek … like to know where do I think wrong?? Doesn't pipes work like some kind of buffers??? You can also see… Re: C and C++ pipes - anything new? Programming Software Development by Salem Pipes are part of the POSIX operating system, and nothing to do with the language. As for classes, maybe - I dunno. I've reached my google quota for the day. Re: C and C++ pipes - anything new? Programming Software Development by Ancient Dragon pipes don't work at all in win32 programs, only console programs on Ms-Windows platforms. See the discussion [URL="http://msdn.microsoft.com/en-us/library/96ayss4b.aspx"]here[/URL] for work-around. Re: pipes Programming Software Development by Rashakil Fol You can tell yourself. You understand how every individual part works, right? So simulate the code by hand, and you'll see where it's going wrong. Re: pipes Programming Software Development by smart girl I know what the problem is and I've solved it thanx Simulate FCFS scheduling algo using pipes for IPC (on linux) Programming Software Development by sumi1234 …do Write a program to simulate **FCFS scheduling algorithm** using pipes for inter process communication. 1. Let the parent program be… For each process to be scheduled, scheduler: i)Creates two pipes Pipe_sched and Pipe_child, forks a child process. ii)Pipe_sched from… entering the scheduler) and i am havin problem with pipes(We have to use unnamed… Re: Simulate FCFS scheduling algo using pipes for IPC (on linux) Programming Software Development by histrungalot … is the child if (cpid == 0) { // Close the pipes the child shouldn't use close(pipeToParent[0]); close(pipeToChild… // This is the parent else { // Close the pipes the parent shouldn't use close(pipeToChild[0]); close(pipeToParent… C and C++ pipes - anything new? Programming Software Development by edek Is there any difference between C and C++ pipes implementation? Is there any C++ library that makes using pipes easier? I ask those questions because there are many 'wrapper' classes in C++ that wraps C (like string, vector etc.) Is there anything that 'wraps' pipes? <Thanks> Issues sending data over named pipes Programming Software Development by nunntb473 …that was hit and miss. So I decided to give pipes a go. Frankly I dont have much of a preference… having trouble getting any communication between two programs with named pipes, both on the same machine. It seems to either …typically have firewall issues when performing a local communication, are pipes the same? I have the server and client each as… Re: Using Named Pipes with Asynchronous I/O Redirection to WinAPI Programming Software Development by wisaacs … have to post code. The assumption that pipes are required for asynchrony is wrong though. Pipes have no relationship to asynchrony. You… Re: C and C++ pipes - anything new? Programming Software Development by vijayan121 > Is there anything that 'wraps' pipes? i do not know of any, but it is very … named pipes Programming Software Development by suganthi87 Hi I am using named pipes to transfer text between vc++ and delphi. The delphi code … i.e 'a' at Delphi end. I am using 'rllibby' pipes.pas unit. It would be great, if anyone could help… Using Named Pipes with Asynchronous I/O Redirection to WinAPI Programming Software Development by Dennis M. …, I have had suggestions to use named pipes. Before, I could read from my anonymous pipes, but I had the issue of… Re: Using Named Pipes with Asynchronous I/O Redirection to WinAPI Programming Software Development by wisaacs … real answer, and it was very tough to discover. Named Pipes normally fail for redirection because the default handles must be… // properties and, as a result, non-closeable handles to the pipes // are created. if (!DuplicateHandle(GetCurrentProcess(),hOutputReadTmp, GetCurrentProcess(), &hOutputRead, // Address… Named Pipes Programming Software Development by BobPawley … I am attempting to employ the named pipe application “Using Pipes for Messages” which I found at [url]http://www.delphi3000… running Borland Studio 2006 on Win 7 and need named pipes to communicate to a C# app that I am also… Re: Using Named Pipes with Asynchronous I/O Redirection to WinAPI Programming Software Development by Dennis M. … pi; STARTUPINFO si; BOOL bSuccess = FALSE; // Let's use named pipes <3 for(int i=0;i<INSTANCES;i… First AC - now Broadband over GAS PIPES Community Center by ! ! … signals to transmit data at broadband speeds through natural-gas pipes. The company claims its technology will be able to offer… Learning Pipes Programming Software Development by JimD C++ Newb … information being passed between a parent and child process using pipes (I am only testing for "a" at the… grep and sed / with pipes in C? Programming Software Development by Sundown G …] And works! BUTTTT Im using this commands in C with Pipes.. Here the code ... [CODE] #include <unistd.h> #include… grep and sed / with pipes in C? Programming Software Development by Sundown G …] And works! BUTTTT Im using this commands in C with Pipes.. Here the code ... [CODE] #include <unistd.h> #include… Resume write (atomic operations with pipes vs. split files) Hardware and Software Linux and Unix by Hiroshe … put this in the Unix catagory, however I beleive Windows pipes also can perform atomic writes - correct me if I'm… execl() and pipes and fork Programming Software Development by kyle.mace.35 How do I use pipes to communicate with another proccess that is being run using … Using multiple pipes Programming Software Development by COKEDUDE Is this a good example of using multiple pipes. I need to fork 3 children. Would I just need … How to pass a Structure with pointers through Named Pipes Programming by mcjiwe … pointer structure inside that I need to pass through named pipes with the function WriteFile from WinAPI. typedef struct Labyrinth{ Cell… Re: pipes problem Programming Software Development by evanescence somebody?