1. Built in glibc 2.28 and gcc 8.2.0:
mkfifo/fopen/fread/fwrite kind of worked with glibc 2.26 and gcc 7.2.0. With 2.28 named-pipe reading with fread would read the pipe only once for some reason - probably because it stopped being a 'blocking' call To fix - switched to open/read/poll combination - so none of glibc functions is used. 2. camogm_fifo_reader - test program - use with *_writer or just 'echo' 3. camogm_fifo_writer - test program
Showing
This diff is collapsed.
src/camogm_fifo_reader.c
0 → 100644
src/camogm_fifo_writer.c
0 → 100644
Please register or sign in to comment