+14
−4
+131
−91
src/camogm_fifo_reader.c
0 → 100644
+105
−0
src/camogm_fifo_writer.c
0 → 100644
+36
−0
+2
−2
Loading
GitLab was upgraded during the server migration. If you cannot sign in, use "Forgot your password?" to reset it — passwords could not be carried over.
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