Opens a named pipe and returns file descriptor, which you pass to subsequent Pipes VIs.

A named pipe is a special file that can be used to communicate between separate Linux processes. Unlike a normal file, you must open a pipe in read mode, usually from another process or application, before you open the pipe in write mode so data written to the pipe can be passed to the reading process. Otherwise, an I/O error occurs and the open process fails.


icon

Inputs/Outputs

  • cpath.png path to named pipe

    path to named pipe is the path to the named pipe.

  • cenum.png mode

    mode indicates whether you want to read or write data.

    0
    Read
    1
    Write
  • cerrcodeclst.png error in (no error)

    error in describes error conditions that occur before this node runs. This input provides standard error in functionality.

  • ii32.png file descriptor

    file descriptor is the file descriptor to use when reading from and writing to the opened pipe.

  • ierrcodeclst.png error out

    error out contains error information. This output provides standard error out functionality.