Warning, /multimedia/k3b/libk3b/tools/qprocess/README is written in an unsupported language. File is not indexed.

0001 This is a fork of QProcess (KProcess needs to tag along without any changes since K3b::Process is derived from that)
0002 from Qt 4.5 which adds the following changes:
0003 
0004 - New method QProcess::setFlags with flags RawStdin and RawStdout
0005 - If RawStdin/RawStdout is set the ringbuffer is not used for stdin/stdout. Calls to QProcess::readData/writeData are directly
0006   done on the process pipe (only unix has been patched so far)
0007   Also the pipe is blocking, i.e. fcntl( .. O_NONBLOCK ) is not called
0008   The latter is very important since K3b does its piping in a separate thread and non-blocking pipes make that
0009   near to impossible.