Skip to content


Learning Linux IPC, Part II FIFO

FIFO is a named pipe, which can be created by processes.

#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <unistd.h>
 
#include <linux/stat.h>
 
#define FIFO_FILE       "MYFIFO"
 
int main(void)
{
        FILE *fp;
        char readbuf[80];
 
        /* Create the FIFO if it does not exist */
        umask(0);
        mknod(FIFO_FILE, S_IFIFO|0666, 0);
 
        while(1)
        {
                fp = fopen(FIFO_FILE, "r");
                fgets(readbuf, 80, fp);
                printf("Received string: %s\n", readbuf);
                fclose(fp);
        }
 
        return(0);
}

Posted in Linux. Tagged with , , .

0 Responses

Stay in touch with the conversation, subscribe to the RSS feed for comments on this post.

Some HTML is OK

(required)

(required, but never shared)

or, reply to this post via trackback.