Hi I'm trying to Implement a IPC in Java with FIFO I cretaed a FIFO with with
mkfifo temp
then I tried to open and FileWriter with
BufferedWriter writeStream = new BufferedWriter(new FileWriter(writePipePath));
but it blocks at this line.
Any idea what the problem could be?