Any structure in which the First object In is the First object Out. Synonyms include queue, and pipe.

learn more… | top users | synonyms

0
votes
0answers
22 views

2 FIFOs 1 Task - Syncronize them

I have the following problem: I have to lunch a process from various terminals but I only can start running the program after a certain number of process has started. In other words, I have to block ...
0
votes
0answers
37 views

server-client using FIFO(named pipe), shared memory and signals(SIGUSR2)

Im trying to make a Tic Tac Toe game with server-client using FIFO(named pipe), shared memory and signals(SIGUSR2). The first step is to write the pid of the client process to the FIFO. And in the ...
3
votes
3answers
74 views

SQL Query to calculate first n customers based on quantity conditions

I have a question but I am not sure how to ask. Here is my example. Product Customer TxDate Qty Apple Peter 2013/02/02 3 Apple Edward 2013/02/03 5 Apple Sally 2013/02/06 3 ...
0
votes
0answers
21 views

LockSupport, waiting main?

I am trying to build my own semaphore (for a class) and I want to put all the "blocked" threads in a FIFO data structure, so then I can put them on ready by just peeking the first who entered and ...
-3
votes
0answers
32 views

Implementing FIFO and LRU in C that gives same performance

I want to wrte a small C program for which LRU and FIFO will perform the same. I will ignore the memory used by the program code itself, and assume that the only memory that is needed is for global ...
0
votes
2answers
20 views

Named pipes without child process

I used a FIFO for a simple read/write programme where the input from user is written to standard output by the writer function. The question is however, am I able to run this program without creating ...
0
votes
1answer
43 views

Making fifo in C

I have two problems with my code. First problem is that once I create a fifo, I don't know how to add a condition in the code so in future running, if the fifo exists - then just don't create it. ...
0
votes
1answer
76 views

named pipes(fifo) program doesn't work

guys! I am trying to make my first program that uses named pipes or fifo. The client sends to server positive integers. When a negative number is sent, the transmission closes. The server determines ...
0
votes
3answers
83 views

FIFO String Allocation in C#

I am currently having a problem with the program that I'm creating right now. I already looked for answers, but it's different from what I want to happen because the given here are strings. We were ...
1
vote
4answers
124 views

FIFO Issue with concurrent processes

PRETEND THEY'RE NOT PARENT AND CHILD PROCESSES EVEN THOUGH THEY ARE. MAKE FIFO: /* Create response FIFO. */ if (mkfifo(RESP_FIFO_NAME, FIFO_MODE) == -1) { if (errno != EEXIST) { ...
-1
votes
1answer
60 views

Unable to open FIFO for writing

'Server' program side: #define RESP_FIFO_NAME "response" /* Global Variables */ char *cmdfifo = CMD_FIFO_NAME; /* Name of command FIFO. */ char *respfifo = RESP_FIFO_NAME; /* Name of response FIFO. ...
0
votes
0answers
14 views

Write program that reades text file, capitalizes and counts

I want to write a program that reads a text file, capitalises every word, counts the number of words and the average word length, and prints all results to an output file (could be stdout). The ...
0
votes
3answers
63 views

FIFO with 2 clocks in VHDL

I have a problem with a vhdl assignment. I need to create a FIFO buffer between a bus of 500MHz and another bus of 30MHz. I have designed a basic FIFO buffer with inputs: Data_in, Write_EN, ...
0
votes
0answers
23 views

netMsmqBinding not getting the messages in FIFO state?

I am using netMsmqBinding and I need the messages received at the other endpoint to be FIFO? When I use [ServiceBehavior(InstanceContextMode = InstanceContextMode.Single, ConcurrencyMode = ...
0
votes
0answers
13 views

Spinners in list view are not staying selected

I have a ListView with one Spinner and one TextView per row. My adapter has a FIFO queue containing custom Objects. My user clicks a button, I capture a time and push an object onto my queue. Later, ...
0
votes
0answers
80 views

FIFO query gets wrong values when insert in same date

Let's assume we have a stock table and here is the code for create it. CREATE TABLE dbo.Stock ( StockID INT IDENTITY(1, 1) NOT NULL, ...
0
votes
1answer
73 views

How do you programmatically configure the Serial FIFO Receive and Transmit Buffers in Windows?

From Device Manager in Windows it is possible to configure the Receive Buffer and Transmit FIFO Buffer sizes for a serial port from Advanced Settings for a COM port: I would like to configure the ...
1
vote
1answer
82 views

Read and delete from FIFO in C

I am building a server that communicates through FIFO with it's clients. So far I've managed to create a FIFO, run a new thread, once a message arrives in the FIFO and output the message from the ...
0
votes
2answers
57 views

In bash, how to tail a fifo that is currently being written to, and then tail the fifo again, grepping for different text?

I have a process that is writing to standard out, and I want to be able to monitor the output by grepping for various strings while running tail -f. One way to do this is to write to a normal file and ...
0
votes
0answers
16 views

copy data from one FIFO into two FIFOs

Basically I want to have a pipe with two outputs and two processes that listen to it. One reader process is a fast high-priority process which does the actual work while the second reader is a ...
1
vote
2answers
204 views

Asynchronous FIFO Design

I found the following piece of code in the internet , while searching for good FIFO design. From the linkSVN Code FIFO -Author Clifford E. Cummings . I did some research , I was not able to figure out ...
2
votes
2answers
153 views

How to send a file through a named pipe in C?

I have two programs, server and client. Server should read a file and then send its content through a named pipe to client. But my server reads only two chars from file, and then exits. What is wrong ...
0
votes
2answers
45 views

Two queues feeding a single endpoint

Assume I have two queues holding similar message types to be sent to an endpoint. One of the queues (Queue A) has the highest priority so its messages must always be sent first. The messages in the ...
0
votes
0answers
47 views

Linux tee command with multiple fifo. fifo blocks tee

I am trying to develope one program to play and record some rtmp streames. The program is developed in Qt. i am using the rtmpdump and mplayer. since both are running in seperate process, i am using ...
0
votes
1answer
45 views

Efficient use of a fifo for an audio streaming application

I have an audio dsp application which produces output at a significantly faster rate than real-time, using a pool of threads. This is intended for use in games, and the audio must be streamed with a ...
0
votes
2answers
74 views

How to let File::Queue to be able to process utf8 strings in perl?

I'm processing some data from XML files in perl and wanna use the FIFO File::Queue to divide and speed up the process. One perl script parses the XML file and prepares JSON output for another script: ...
0
votes
3answers
109 views

FIFO cache vs LRU cache

I'm really sorry for such simple question. I just want to be sure that I understand FIFO cache model correctly and I hope that someone will help me with that :) LRU cache deletes entry that was ...
1
vote
2answers
261 views

How to handle FIFO queue for producer-consumer pattern

I've a FIFO queue, producers and consumers which I try in different combinations which works except just this arrangement. I'm supposed to be able to run this with 3 Producers, 2 Consumers, 10 slots ...
1
vote
1answer
152 views

Shifting 2D array Verilog

I dont know what doesnt work on the following code, but it wont synthesize: reg [7:0] FIFO [0:8]; always@(posedge clk) begin if(wr & !rd & !full) begin FIFO[0:8] <= {data_in, ...
0
votes
0answers
37 views

[FIFO]getline blocking when reading from a FIFO

I have two processes. One is a producer that writes data to a FIFO file opened in O_RDWR mode. The other process is a consumer . It opens the FIFO in "read mode" using a file pointer. When producer ...
0
votes
1answer
193 views

Reading data from FIFO as it arrives (linux)

I have two programs written in C. Program A generates output to FIFO and program B reads that output from FIFO and decides to process accordingly. Now in program A, I have redirected stdout to FIFO so ...
0
votes
2answers
189 views

multi-process C++ fifo

In C you can create multi process application using fork() and you can then communicate using a FIFO pipe. I have learned that C++ only supports multi threaded applications and if you want a ...
0
votes
3answers
118 views

Redirect stdout to fifo immediately

I have, for example, a c program that prints three lines, two seconds apart, that is: printf("Wait 2 seconds...\n"); sleep(2); printf("Two more\n"); sleep(2); printf("Quitting in 2 ...
1
vote
1answer
129 views

how 2 c++ programs call each other's class/functions on same linux box?

I'm brand new to c++, so my vocab's probably off. I currently make 100% ajax sites but want to work in websockets to autoupdate relevant clients. I'm using fastcgi++ and websocket++. I'd like to ...
1
vote
2answers
155 views

FIFO (named pipe) in C

Recently I have tasked with customizing one of the applications that our groups uses quite regularly. The application is written in C, something that I don't have a whole lot of experience in. I ...
0
votes
3answers
162 views

in a bash script that uses zenity --progress progress bar reading from a pipe, how to safely kill the piped process?

I am displaying a command progress in a bash script. The command output is piped to zenity --progress and can eventually run for a long time. I want to abort it (kill that command) if I cancel the ...
0
votes
1answer
85 views

Syslog-ng, Log file and fifo file

I have some question about syslog fifo and log file. For example I have my gc.log and I have this configuration on syslog source s_splunk { udp(ip("127.0.0.1") port(514)); ...
3
votes
2answers
125 views

Logging to a non blocking named pipe?

I have a question, and I could'nt find help anywhere on stackoverflow or the web. I have a program (celery distributed task queue) and I have multiple instances (workers) each having a logfile ...
0
votes
1answer
91 views

Writing to FIFO file with c

I am relatively new to programming. What I am trying to accomplish is to write to a FIFO file I think its called. Basically if I am at a terminal window I can execute the command echo "0=0" > ...
0
votes
0answers
168 views

Queue class / FIFO LinkedList issue

I have a Queue class with the following queue.h #include <iostream> #include <stdio.h> #include "state.h" using namespace std; // Node class class Node { public: State elem; ...
0
votes
1answer
51 views

Using QAtomicInt as memory fence

Again something about lock free... Suppose I implement a simple array based circular FIFO of integers. The FIFO is accessed by 2 threads single producer, single consumer. The read and write indexes ...
2
votes
1answer
130 views

FIFO to grep to file

I am using a named pipe to trap syslog messages. I can then easily view syslog by doing something like cat /var/log/local3.pipe | grep somefilter or grep somefilter /var/log/local3.pipe These both ...
0
votes
5answers
123 views

infinite fifo in java

I am looking for a thread safe infinite blocking fifo which is backed by a fixed buffer such as an array. The semantics would be that multiple readers and writer threads can accesses it safely. ...
0
votes
1answer
406 views

Linux fifo (named pipe) O_NONBLOCK breaks pipe

I've been writing a small program in C++ for linux using inter process communication. I had a problem when trying to read in a non-blocking way with one process and write (blocking) with another ...
0
votes
2answers
318 views

Android/Java simple FiFO buffer

I looking for simple byte FiFo buffer. I have to put and get or a single byte or array. But I can put every time single byte and get array and vice versa. Any idea or example code to help me ?
0
votes
1answer
141 views

My fork fifo c code doesn't work properly

I'm having problems with the following code. I'm doing a lab assignment on using forks (creating processes). Its a simple program thats supposed to read input from keyboard and then read/write it to a ...
0
votes
0answers
84 views

Moving data between buffer and mp3 decoder

I have problem with moving data from fifo buffer (23k256) to mp3 decoder (vs1053b). Data is fed from local shoutcast server via ethernet and buffered in fifo queue. When proper amount is buffered to ...
0
votes
2answers
165 views

headache with named pipes and forks

I need to write program that have construction like this: Parent makes fifo, then fork() child 1 reads message from stdin and writes it to named pipe (FIFO) then in parent process I need to create ...
0
votes
0answers
107 views

Reopening existing FIFO gives error “No such file or directory”

I am trying to realize a very simple communication between a PHP website and a C++ program. The solution chosen was to make use of Linux fifo's. This works well for the first command, but when we try ...
1
vote
1answer
204 views

FIFO pipe is always readable in select()

In C pseudo-code: while (1) { fifo = open("fifo", O_RDONLY | O_NONBLOCK); fd_set read; FD_SET(fifo, &read); select(nfds, &read, NULL, NULL, NULL); } The process sleeps as ...

1 2 3 4 5 6