This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues/pull-requests.
2016-05-27 17:00:02 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
int main(int argc, char * argv[])
|
|
|
|
{
|
2016-09-15 23:08:08 +02:00
|
|
|
|
|
|
|
(void) argc;
|
|
|
|
(void) argv;
|
|
|
|
|
2016-05-27 17:00:02 +02:00
|
|
|
char *fifopathin = "/tmp/123000-1-in";
|
|
|
|
size_t msize = 100;
|
|
|
|
|
|
|
|
char buf[BUFSIZ];
|
|
|
|
FILE *in = fopen (fifopathin, "rb");
|
|
|
|
|
|
|
|
printf ("opened\n");
|
|
|
|
|
|
|
|
if ((msize = fread (buf, msize, 1, in))) {
|
|
|
|
printf ("error read %ld\n", msize);
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf ("%s\n", buf);
|
|
|
|
|
|
|
|
sleep (10);
|
|
|
|
printf ("read end\n");
|
|
|
|
|
|
|
|
fclose (in);
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|