-1
votes
1answer
73 views

child of parent saying i finished in c++?

I'm trying to keep a child running while parent is still processing , pausing/resuming the child process according to specefic order : eg :1-parent 2-child 3-parent 4-child int main(){ int pid = ...
0
votes
1answer
163 views

Python inter-process communication, getting pid of an independent process (not child) started from another Python process

I have a problem that feels like it ought to be simple. As a side-note, I'm already using the multiprocessing module, so I'm somewhat reluctant to use the subprocess module. Anyway, I have a Python ...
1
vote
3answers
61 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 ...
1
vote
0answers
47 views

linux domain socket credentials : how to check two scheduled process have same cron ancestor

Let's say i have some scott user. In scott's crontab, i have two tasks scheduled : task1 is sort of "server" task which wraps some information and serve it through unix domain socket (task process ...
0
votes
1answer
49 views

Distributed environment ideas

I need to find some real applications with below assumptions: We have several processes (either on the same machine, or distributed) that can communicate with each other A time unit has T seconds. ...
2
votes
2answers
196 views

Communicating with class in a different process

I have class named worker, I want to create new instance of this class in a new process. But I want to be able to communicate with this class after it will be open in a new process and being able to ...
0
votes
4answers
113 views

C++ to python communication. Multiple io streams?

A python program opens a new process of the C++ program and is reading the processes stdout. No problem so far. But is it possible to have multiple streams like this for communication? I can get two ...
2
votes
2answers
768 views

Inter Process Communication using vbscript

I need to send data form one process to another. Constraints : Sender process is very expensive call. It needs to be done using vbscipt. For Sender process,this data transferring is an additional ...
0
votes
1answer
36 views

thread have same pririty..How to communicate between then

Consider there are 2 process and each process has 2 thread...say..A , B (first process) and C , D (second priority) all thse thread have same pririty.. how do you communicate b/w these thread..
-4
votes
1answer
233 views

thread communication vs process communication

Can anyone explain the difference between thread communication and process communication and give few examples of each type of communication?
1
vote
2answers
2k views

Two-Way Parent Child Communication Using 2 Pipes in C on Linux

I'm trying to create a two-way communication between parent and child processes using 2 pipes using C on Linux. The parent is my program and the child is just a random program (say "cat"). I try to ...
1
vote
3answers
485 views

C++ communicate across processes

I have a dll that is loaded into multiple processes. What would be a clean way to have communication across those processes/dlls. Sending simple strings is the goal. I would prefer to avoid ...
0
votes
1answer
65 views

WCF messaging local AND internet

I have the following scenario: There is a master service, which reads other data services and/or a database in a polling fashion. When a new job becomes available it instructs a "slaver" service to ...
1
vote
1answer
1k views

Multiple read/writes with pipes in C

I've seen lots of examples of pipes that read from a child and write to a parent or vice versa. For example: /* this example shows how unnamed pipes may be used */ #include <unistd.h> ...
1
vote
4answers
880 views

How to pass data from one process to another in c?

Is there a way to pass data (ex: int value) from one process to another process in c? In my experience, we just can send signal from one process to another. But looks like there is no way to "attach" ...
0
votes
1answer
48 views

Is there a way to forbid connection from outside of the local session in Windows?

Let's consider I have a service in my user session that listens on some TCP port. Is there a way, on Windows, to only authorize processes from the same session to connect, and to deny connections ...
0
votes
0answers
359 views

Ruby background process communication

How can I communicate with a process using anonymous pipes in Ruby? The process in question is supposed to stay there and listen for commands from stdin. I'd also like to read it's output, which is ...
0
votes
2answers
281 views

Can python share info like .net remoting?

I known python can use pipe to communicate between two process of py. But, data and functions of this method are not clear. I like .net remoting better. So, can python realize that approach?
0
votes
2answers
446 views

How to communicate with .net processes when there are multiple instances of them

I have multiple instances of the same Windows Forms .net 3.5 SP1 C# application running on the same machine. Now I'd like to be able to communicate with them from .net, one instance at a time. ...
1
vote
3answers
98 views

implementaion independent communication within a process

is there any way two threads within the same process can communicate without knowing anything about each other's interface ? basically, one thread is a STOMP server, the other is a client. they're ...
2
votes
3answers
921 views

Reliable bidirectional communication to a Linux process?

What is the reliable way of implementing bidirectional communication to a Linux process? I see that popen does not seem to support "r" and "w" access at the same time... or at least that's what is ...
6
votes
7answers
848 views

In .NET what's the best way for two processes in the same machine to communicate?

What's the best (or maybe not the best -- just good) way for two processes in the same machine to communicate, using .NET? Actually the two processes in the app I'm working on aren't even two ...
5
votes
9answers
2k views

Quick and dirty solution for communication between processes in different machines [closed]

I have two processes written in java in two machines within my network that should pass simple chunks of data to each other. I'm looking for a quick and dirty way (without resorting to writing ...