IPC stands for Inter-process Communication and represents a set of methods for exchanging data and messages between threads and processes.
0
votes
0answers
43 views
linux SysV shm not released when nattach=0
what is the policy of deleting shared memory?
I thought it would delete when 'nattach' becomes zero.
thx
2
votes
1answer
247 views
Java and C++ Shared Memory
I have a C++ piece of code that creates shared memory. Is it possible to write Java Code which can read the memory created by the C++ code unless using JNI. By the way I am using Windows OS.
0
votes
0answers
118 views
Message passing between processes using multiprocessing module
What's the recommended way of sending message from a worker process to another randomly selected (worker or master) process? One approach that I can think of is using Pipes, but since it can only ...
2
votes
3answers
46 views
To find the error returned by read()
I am reading data sent by the parent process using pipe.
Parent process close the read end and write data on the write end of pipe. Similarly, child closes write end and read data from read end.
But ...
1
vote
1answer
41 views
MPI message availability notification
Is there a way in MPI to be notified of availability of message for a particular process? Currenlty I use polling with an asynchronous MPI_Iprobe followed by an MPI_Recv . This means the process have ...
2
votes
3answers
110 views
Linux: is it possible to share code between processes?
I wonder if it's possible for a linux process to call code located in the memory of another process?
Let's say we have a function f() in process A and we want process B to call it. What I thought ...
3
votes
1answer
56 views
ipcs -s not showing named semaphore
I am doing assignment in which I am using POSIX named semaphore, but it is not showing me list when I enter ipcs -s command.
Please help me to get entry of named semaphore. Where will I get that?
0
votes
0answers
149 views
fork and pipe not working in client server program
hi I made a client server program using fifo for requesting client and pipe and fork to call processing client. But there is some strange problem coming.Pipe is getting creted fine and using fork() ...
0
votes
2answers
94 views
Performing sequential operations for groups of Parallel Threads
I have the following scenario which needs to be changed as soon as possible:
1. A group of sequential threads executes (contains 3 threads)
2. A group of another sequential threads executes (contains ...
1
vote
1answer
127 views
O_RDWR on named pipes with poll()
I have gone through a variaty of different linux named pipe client/server implementations but most of them use the blocking defaults on reads/writes.
As I am already using poll() to check other flags ...
0
votes
0answers
54 views
sem_wait unable to continue
I have a process spawning off a few child processes. They are all sharing one semaphore.
In my main program.
sem_t *sharedSem = sem_open(SHAREDSEM, O_CREAT, 0600, 4); // Initial 1
In my child ...
0
votes
2answers
109 views
Share process memory with mmap
I have a C program that generates large amounts of data in memory, and I need to share one particular section of this data in memory, so that another process can have read access to it.
I'm ...
0
votes
1answer
101 views
Linux Message Queues - Multiple receivers
I've recently been investigating and playing around with linux message queues and have come across something that I don't quite understand why it happens!
If we have two programs running that are ...
0
votes
1answer
43 views
InterProcess Communication Factory (Design Advice)
I have a solution which contains many separate EXEs that need to be able to send messages back and forth to one another. Right now each EXE has to know about each other up front and they use IPC to ...
2
votes
2answers
121 views
Get data from file and move through pipes
Disclaimer: this is for an assignment. I am not asking for explicit code. I am only asking for help understanding the concepts so that I may learn the material without copying what someone else has ...
-1
votes
1answer
44 views
How does iZip interact with DropBox?
How does the iZip application interact with the DropBox app, since they're both sandboxed?
As I see it I have full access to DropBox from within iZip, but I've heard that inter-process communication ...
2
votes
2answers
118 views
Linux IPC selection?
I have two processes A and B. A and B needs to communicate (Bi-directional) sometimes for passing signals, messages etc.
I have done some basic research about IPC's available in Linux like semaphore, ...
1
vote
1answer
75 views
Fire an event on another process without knowing the process start order
I need the fastest way to fire an event in other process, I know that I may use Mutex, but it is very hard to manage Mutexes when I don't know the order of starting the two processes, one of the ...
2
votes
2answers
83 views
Child process executes statements written before fork call
I am creating the child process in my code. When i call the fork(), child process should start its execution from next statement, but in my code, child process executes the statement before the fork ...
2
votes
2answers
91 views
Mixed-Mode Process vs. Managed-to-Unmanaged IPC
I am trying to come up with design candidates for a current project that I am working on. Its client interface is based on WCF Services exposing public methods and call backs. Requests are routed all ...
0
votes
2answers
109 views
IPC msgrcv - receiving only two specific types of messages
I've got a problem.
I have a process, let's say it is a client, and a process called server. Client and server are communicate with each other by the same queue. Let's say a client send a message to ...
0
votes
2answers
160 views
How to write to and read from a file simultaneously in C++
I need to write two programs write.cpp & read.cpp to run simultaneously. One of them write(overwrite) to a file and the other one reads from it.
Basically, there is always only one line in the ...
1
vote
0answers
47 views
communicating threads
I need to find those threads(of same/different processes) which are much related to each other like communicating with each other (meaning: sharing data from same cache line) and cluster them. How can ...
0
votes
1answer
93 views
How to read time from a file without converting
My question is general, but I will explain it using a specific example.
Suppose I need to communicate time between two applications. A simple way is to have one application write the output of ...
2
votes
2answers
63 views
Does Perl safely defer INT signals during a Storable write?
I'm concerned about data corruption while executing a Storable::store operation. I'm writing about 100 MB to an NFS to backup my calculations at particular checkpoints but the process isn't exactly ...
0
votes
1answer
123 views
Sending messages from windows service to desktop app on the same machine
I need some advice about a scenario like this: We have a windows service, polling a DB periodically, say every five seconds. We also have a desktop application running on the same machine with the ...
4
votes
4answers
373 views
Read all contents of memory mapped file or Memory Mapped View Accessor without knowing the size of it
I need something similar to ReadToEnd or ReadAllBytes to read all of the contents of the MemoryMappedFile using the MappedViewAccessor if I don't know the size of it, how can I do it?
I have searched ...
1
vote
1answer
98 views
dbus-daemon - session.conf - windows configuration issue with the noncefile
I have an issue with running dbus-daemon on Windows 7 platform. I downloaded dbus 1.4.18 sources and built it using cmake and visual 2010 compilator. Then I started dbus-daemon using dbus-launch and ...
-4
votes
1answer
85 views
Fastest IPC between a Java and C++ process [closed]
Assumption: both are running on the same box.
What's the recommendation out of the whole set of options available?
Speed and reliability are the two spots the solution should hit.
0
votes
1answer
99 views
CreateSharedMemory usage
Does anyone have an example of CreateSharedMemory function (Windows) usage? In a shared internal memory client/server software scenario the server input parameters to the function are only MaxSize and ...
0
votes
3answers
64 views
Handle out of range in select
Many (>1000) workers (process) do some and want to save their work results in database. Result of work is JSON object. Workers produce JSON objects 1-5 per second. Database saver is separated process. ...
1
vote
1answer
121 views
sharing variables between client and server c#
I have client and server applications.
The server counts the number of commands it receives from the client.
I wish to share this number with the client.
The client does not hold an instance of the ...
0
votes
2answers
71 views
C: semphore in MAC OS X unexpected sem_close error
I'm trying to use semphore on my mac, and it throws me an error when I try to close an open semaphore. All initializations were successful, but when it attempted to close second semaphore, it returned ...
0
votes
6answers
173 views
How to send std::string array between processes C++
In C++, I need to start a secondary program from a primary program, sending the second some arguments. I need to return the data produced by the secondary program to the primary program. In this case, ...
0
votes
1answer
51 views
What's a good, simple way to handle IPC in a multi-threaded service?
Many years ago we wrote a "multi-threaded-ish" client/server reports generation system.
It was based on VB6, SQL Server 7, Crystal Reports 7 and MSMQ on a mixture of NT4/Win2K/Win98
It had multiple ...
1
vote
3answers
59 views
Possible to communicate between processes more directly than IPC or sockets?
I have 2 processes, and I would like one of the processes to talk to the other one with a high data throughput. I have tried IPC(boost::iterprocess specifically) and sockets but their ...
0
votes
1answer
103 views
WCF NamedPipe IPC communication
I want to communicate with two application using WCF NamedPipe IPC, The connection is not being established between server and client because some information or the address used in app.config is ...
2
votes
3answers
118 views
Reading data of variable size in buffer using read system call in C
I have an application which writes data (control data, access information etc) to one end of the pipe at parent process. At the child process, I want to read that data as it is.
Parent process ...
0
votes
1answer
108 views
Communicating with program process using pipes
I want to be able to fully communicate with some programs after spawning them from Golang program. What I already have is spawning process and talking through pipes based on last line read from ...
1
vote
1answer
50 views
Shared memory marked as virtual memory?
I run a program which allocates 64MB as shared memory for IPC communication. pmap shows that chunk of 64MB is allocated. However, "top" shows the RES memory of the proc is just about 40MB! I conclude ...
1
vote
1answer
115 views
Communication between process using Distributed Object
I can't manage to vend proxy object, it just stuck on client side when try to get connection
NSConnection *conn = [NSConnection connectionWithRegisteredName:@"server" host:nil];
Here is how I ...
2
votes
2answers
204 views
Architecture approach with IPC, Twisted or ZeroMQ?
I'm using twisted to get messages from internet connected sensors in order to store it to a db. I want to check these messages without interfere these process,because I need compare every message with ...
2
votes
1answer
190 views
IPC between Qt and C/C++
I need to send/receive data between two processes. One of them will be using Qt (4 or 5).
That process will be running all the time (like a background process).
The other process will be launched and ...
2
votes
2answers
151 views
What's the easiest way to access other .exe data in delphi?
I trying to implement some basic automated testing on a 10 million LOC project that don't follow good OO pratices (ex: isolating business logic into classes/units) with the DUnit that comes along with ...
0
votes
1answer
80 views
Rendezvous in inter process communication?
I have two processes communicating through a send() and a receive().
If both are blocking, I know this is what is known as extended rendezvous, if the sender is non-blocking then it's called limited ...
4
votes
2answers
433 views
Python IPC - Twisted, RabbitMQ,
I want to create 2 applications in Python which should communicate with each other. One of these application should behave like a server and the second should be the GUI of a client. They could be run ...
0
votes
0answers
66 views
How to handle delegate callbacks in concurrent framework? [closed]
I setup a prototype of a framework that implements an IPC messaging module and I wonder whether I do something fundamentally wrong.
Here couple features of the framework:
The core module ...
-1
votes
1answer
79 views
Can I access my ftp server through path such as \\192.xx.xx.xx? [closed]
I build a ftp server based on serv-u winxp, now I can access it by ftp://192.xx.xx.xx, can I access it through path such as \192.xx.xx.xx directly? Direct means can doing it by explorer 's path, ...
1
vote
3answers
339 views
Efficient Python IPC
I'm making an application in Python3, which will be divided in batch and gui parts.
Batch is responsible for processing logic and gui is responsible for displaying it.
Which inter-process ...
2
votes
6answers
245 views
Passing an object from one application to another in android
After lot of googeling, I could not find any way to pass a object from one application to other application.Though I know that we can pass object from one activty to other activity using Parcel but ...

