A named pipe is an inter-process communication mechanism, which exists both on Unix and Unix-like systems (where it is also known as a FIFO and is file-like), and on Microsoft Windows (where it is an in-memory kernel object).
The following line in my C program should provided All/Group/Owner read and write permissions mkfifo("/tmp/dumbPipe", 0666) But …
c unix permissions named-pipesWe are trying to connect two Hyper-V VMs through a serial port. Hyper-V exposes the serial port as a named …
serial-port named-pipes hyper-vWhat are the differences between pipes in Windows and Linux?
language-agnostic ipc pipe named-pipesI want to write to a named pipe (already created) without blocking on the reader. My reader is another application …
java nio named-pipes nonblockingI'm trying to implement a named pipes server in .NET. The client will be C++. The nature of the data …
.net named-pipesCan I access a named pipe on computer A from computer B given computer A's IP address? If so, what …
c++ windows winapi pipe named-pipesi have the following bit of C code which reads from a pipe and then should block but it never …
c linux named-pipesI have a following configuration in my wcf service <endpoint address="" binding="netNamedPipeBinding" contract="WcfWithNamedPipe.IService1" bindingConfiguration="WcfWithNamedPipe.netNamedPipeBinding"&…
.net wcf wcf-binding named-pipes netnamedpipebindingI call a method in a WCF proxy, where the binding is named pipes. At the moment, the code fails …
wcf named-pipesI have a script that writes to a named pipe and another that reads from the pipe. Occasionally, when starting …
bash named-pipes