enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. Pipeline (Unix) - Wikipedia

    en.wikipedia.org/wiki/Pipeline_(Unix)

    In Unix-like computer operating systems, a pipeline is a mechanism for inter-process communication using message passing. A pipeline is a set of processes chained together by their standard streams, so that the output text of each process (stdout) is passed directly as input (stdin) to the next one. The second process is started as the first ...

  3. Named pipe - Wikipedia

    en.wikipedia.org/wiki/Named_pipe

    Named pipe. In computing, a named pipe (also known as a FIFO for its behavior) is an extension to the traditional pipe concept on Unix and Unix-like systems, and is one of the methods of inter-process communication (IPC). The concept is also found in OS/2 and Microsoft Windows, although the semantics differ substantially.

  4. Anonymous pipe - Wikipedia

    en.wikipedia.org/wiki/Anonymous_pipe

    Anonymous pipe. In computer science, an anonymous pipe is a simplex FIFO communication channel that may be used for one-way interprocess communication (IPC). An implementation is often integrated into the operating system 's file IO subsystem. Typically a parent program opens anonymous pipes, and creates a new process that inherits the other ...

  5. Inter-process communication - Wikipedia

    en.wikipedia.org/wiki/Inter-process_communication

    Most operating systems Anonymous pipe: A unidirectional data channel using standard input and output. Data written to the write-end of the pipe is buffered by the operating system until it is read from the read-end of the pipe. Two-way communication between processes can be achieved by using two pipes in opposite "directions". All POSIX systems ...

  6. Redirection (computing) - Wikipedia

    en.wikipedia.org/wiki/Redirection_(computing)

    However, prior to the introduction of UNIX OS with its "pipes", redirection in operating systems was hard or even impossible to do. [2] In Unix-like operating systems, programs do redirection with the dup2(2) system call, or its less-flexible but higher-level stdio analogues, freopen(3) and popen(3). [3]

  7. System call - Wikipedia

    en.wikipedia.org/wiki/System_call

    System call. A high-level overview of the Linux kernel's system call interface, which handles communication between its various components and the userspace. In computing, a system call (commonly abbreviated to syscall) is the programmatic way in which a computer program requests a service from the operating system [a] on which it is executed.

  8. Process substitution - Wikipedia

    en.wikipedia.org/wiki/Process_substitution

    Process substitution. In computing, process substitution is a form of inter-process communication that allows the input or output of a command to appear as a file. The command is substituted in-line, where a file name would normally occur, by the command shell. This allows programs that normally only accept files to directly read from or write ...

  9. dup (system call) - Wikipedia

    en.wikipedia.org/wiki/Dup_(system_call)

    Both file descriptors in a dup () system call refer to the same open file description which means they share file offset and file status flags; Similar but not identical to the logic used in pointers, shallow or deep copying or references, changes to the offset on one of the file descriptors changes it for the other file descriptor.