Lines Matching defs:fifo
38 When running, the program creates the named pipe "hiper.fifo"
40 Whenever there is input into the fifo, the program reads the input as a list
46 % echo http://www.yahoo.com > hiper.fifo
49 % cat my-url-list > hiper.fifo
51 The fifo buffer is handled almost instantly, so you can even add more URL's
330 /* This gets called by glib whenever data is received from the fifo */
386 const char *fifo = "hiper.fifo";
389 if(lstat (fifo, &st) == 0) {
397 unlink(fifo);
398 if(mkfifo (fifo, 0600) == -1) {
403 socket = open(fifo, O_RDWR | O_NONBLOCK, 0);
409 MSG_OUT("Now, pipe some URL's into > %s\n", fifo);