0
votes
5answers
55 views
Reliable non-network IPC in Java
Is there a reliable, cross-platform way to do IPC (between two JVMs running on the same host) in Java (J2SE) that doesn't rely on the network stack?
To be more specific, I have a …
2
votes
3answers
39 views
Using message queue between unrelated processes
Hello,
I am trying to use a message queue for communication between two unrelated processes in Linux. I am aware that using a common key value will allow us to open the same messa …
3
votes
1answer
57 views
What’s the fastest Perl IPC/message queue for a single machine?
I'm working on a (primarily) Perl project and want to use a message queue to isolate processes from each other. I have a work flow like this:
Input -> Receiver -> Processor(s) -> …
0
votes
2answers
101 views
Call unmanged Code from C# - returning a struct with arrays
[EDIT] I changed the source as suggested by Stephen Martin (highlighted in bold). And added the C++ source code as well.
Hi,
I'd like to call an unmanaged function in a self-wri …
3
votes
2answers
51 views
Are Interlocked* functions useful on shared memory?
Two Windows processes have memory mapped the same shared file. If the file consists of counters, is it appropriate to use the Interlocked* functions (like InterlockedIncrement) to …
2
votes
4answers
99 views
blocks - send input to python subprocess pipeline
I'm testing subprocesses pipelines with python. I'm aware that I can do what the programs below do in python directly, but that's not the point. I just want to test the pipeline so …
0
votes
2answers
52 views
Win32 Mutex not waiting.
I am creating an application that implements inter process communication.
For this purpose I have set up a shared buffer, which seems to work fine.
Now, I need a way for the data g …
0
votes
2answers
26 views
How to run WCF IPC (http) on localhost without requesting administrative privileges?
We're developing a set of applications that need to communicate with each other on the user's session. These applications do not require any administrative privileges to run, but a …
2
votes
4answers
122 views
perl hangs on exit (after closing a filehandle)
I've got a function that does (in short):
my $file = IO::File->new("| some_command >> /dev/null 2>&1")
or die "cannot open some_command for writing: $!\n";
.. …
3
votes
6answers
198 views
Is it possible to use function pointers across processes ?
I'm aware that each process creates it's own memory address space, however I was wondering,
If Process A was to have a function like :
int DoStuff() { return 1; }
and a pointer …
2
votes
1answer
60 views
How do I do a non-blocking IPC read on Windows?
I have a Perl script that uses an external tool (cleartool) to gather information about a list of files. I want to use IPC to avoid spawning a new process for each file:
use IPC:: …
1
vote
2answers
92 views
Local Chat server in C using IPC
Hi Guys I need to write a chat server in C. It only needs to use IPC.
Could you help me on how to proceed on this. A skeleton code will help me a lot.
1
vote
1answer
37 views
Logging inside threads in a Rails application
I've got a Rails application in which a small number of actions require significant computation time. Rather than going through the complexity of managing these actions as backgrou …
0
votes
1answer
50 views
How reliable are unix domain sockets?
I'm trying to figure out a protocol to use with domain sockets and can't find information on how blindly the domain sockets can be trusted.
Can data be lost? Are messages always r …
0
votes
3answers
57 views
How can I cleanup the IPC message-queue?
I am using msgget() function in my IPC based application. How can I clean up the queue filled up with old message queues?
