I am having trouble in creating named pipe in Android and the example below illustrates my dilemma:
res = mkfifo(\"/sdcard/fifo9000\", S_IRWXO); if (res != 0
If you're coding this in Java, you should just use PipedInputStream and PipedOutputStream.