4
votes
10answers
909 views
Efficient data transfer from Java to C++ on windows
I'm looking to stream lots of data (up to ~1 Gbit) from Java to a C++ application (both on the same machine). I'm currently using a FIFO on Linux but need a Windows solution too.
The most …
2
votes
4answers
153 views
Named Pipes (FIFOs) on Unix with multiple readers
I have two programs, Writer and Reader.
I have a FIFO from Writer to Reader so when I write something to stdin in Writer, it gets printed out to stdout from Reader.
I tried doing this with TWO …
2
votes
4answers
512 views
Create a temporary FIFO (named pipe) in Python?
How can you create a temporary FIFO (named pipe) in Python? This should work:
import tempfile
temp_file_name = mktemp()
os.mkfifo(temp_file_name)
open(temp_file_name, os.O_WRONLY)
# ... some …
2
votes
5answers
491 views
Which STL container should I use for a FIFO?
Which STL container would fit my needs best? I basically have a 10 elements wide container in which I continually push_back new elements while pop_front ing the oldest element (about a million time).
…
2
votes
3answers
125 views
Can’t write to FIFO file mouted via NFS
I'm trying to write to FIFO file locate on NFS mount and it blocks. What could be the problem?
My /etc/export:
/tmp/test/ 10.0.0.0/24(rw,no_root_squash,async)
ls /tmp/test on NFS server and client …
2
votes
5answers
254 views
What is the correct term for a fixed sized FIFO queue?
What is the correct name for the following data structure? It is:
A queue of fixed size
New elements are added to the start
Whenever the queue gets above a certain size a number of elements are …
2
votes
1answer
119 views
Are there repercussions to having many processes write to a single reader on a named pipe in posix?
I am writing a program for POSIX (OSX) where I will have many processes sending messages to one listener, who is essentially a logging thread. All of the processes are running in seperate programs, …
2
votes
5answers
1k views
Most elegant way to implement a circular list (FIFO)
What is the most elegant and simple way to implement a circular list, FIFO style? I'm looking for a solution that doesn't resort to hacks like catching exceptions.
No, this is not for homework.
For …
1
vote
2answers
105 views
Call LaTeX on a named pipe (fifo)?
I'm running LaTeX on a named pipe fifo on Unix. I create the fifo like-so:
$ mkfifo fifo
I then run LaTeX like-so:
$ latex fifo
This process blocks and has no output until I write to the fifo …
1
vote
3answers
298 views
FIFO with winform in C#
I'm getting annoyed with GUI problems in my threads. How do i create a FIFO so my main form/thread will receive data to do things instead of having my threads use a callback and run the code (and …
1
vote
4answers
726 views
Linux kernel /proc FIFO/pipe
I'm currently trying to create a kernel module that will produce data based on kernel events and push them to a file. After reading that this is bad (and I agree), I decided it would make more sense …
0
votes
1answer
14 views
What’s the best relational structure for implementing a FIFO product inventory?
What's the best relational structure for implementing a FIFO product inventory? I need that the product entries be stored grouped by entry date and entry price, but sales from the existing stock be …
0
votes
1answer
20 views
Informix: Fifo valuation with SQL/Stored procedures
I am using IDS 10 and I have a simple transaction table with the inventory changes with product ID, transaction time, volume, quantity and price.
Is it possible to determine the FIFO valuation solely …
0
votes
1answer
87 views
FIFO semaphore test
Hello everyone,
I have implemented FIFO semaphores but now I need a way to test/prove that they are working properly. A simple test would be to create some threads that try to wait on a semaphore and …
0
votes
1answer
103 views
How can I catch Sybase bcp errors reliably?
We're using named pipes with Sybase bcp so that we can compress output on-the-fly.
This is a paraphrase of the error handling idiom, some error checking in the non-bcp parts of the script has been …
