A capability supported by some operating systems that allows one process to communicate with another process. The processes can be running on the same computer or on different computers connected through a network. It enables one application to control another application, and for several ...

learn more… | top users | synonyms

0
votes
0answers
28 views

Code needed to SendMessage using WM_USER for interprocess communication

OK, all you smart coders out there. I have been able to code a number of Visual Basic executable routines to do special things to control my home security system program, but have gotten stumped on ...
0
votes
1answer
26 views

boost:interprocess > managed_shared_memory > different values

I would like to understand the behavior of the following code. IDAInterface is a libary with a member "myValue". C++: #include <boost/interprocess/managed_shared_memory.hpp> #include ...
0
votes
2answers
32 views

CreateFileMapping and MapViewOfFile with interprocess (un)synchronized multithreaded access?

I use a Shared Memory area to get som data to a second process. The first process uses CreateFileMapping(INVALID_HANDLE_VALUE, ..., PAGE_READWRITE, ...) and MapViewOfFile( ... FILE_MAP_WRITE). The ...
-1
votes
0answers
18 views

Creating named pipes without sudo rights

We have a embedded ARM device running on linux. This setup has an application and a user mode serial driver which controls a HW. The application communicates with the driver all the time in a ...
0
votes
2answers
38 views

any alternative to CPDistributedMessagingCenter on OS X?

I want something like this: http://iphonedevwiki.net/index.php/CPDistributedMessagingCenter to send and receive some NSString between processes synchronously but CPDistributedMessagingCenter is only ...
1
vote
3answers
88 views

passing data between applications / processes

I'm developing an application to monitor information of our software suite, so i'll only have access to modify code from my own project, and the other half will depend on the suite programmers. The ...
0
votes
1answer
29 views

Proper coordination of state between 2 processes

I have 2 processes that i'd like to synchronize: The first process (client) launches another process (a server app that starts some WCF services), and waits for it to reach a certain state. I'd like ...
0
votes
1answer
89 views

Interprocess communication between multiple nodejs apps

I am working on a project in which I am using nodejs. Project runs multiple nodejs apps(processes) simultaneously. I want share data between these processes and synchronize their execution. Does ...
0
votes
1answer
43 views

How can I use a Boost Interprocess allocator with a CGAL Nef_polyhedron_3?

There are two types of 3D polys in CGAL, Polyhedron, and Nef_polyhedron. The former allows one to specify an allocator as its fourth template: ...
1
vote
1answer
60 views

How do I prevent Boost.Interprocess from using wchar?

I'm trying to cross compile some Boost Interprocess code to an environment that doesn't have implementations for wchar functions such a wcslen, and wmemset. Here's my code: #define BOOST_NO_CWCHAR ...
0
votes
1answer
41 views

Receiving messages via python while doing other work

I have a python script A and a python script B. Both of them are running independently. I want, as soon as script B finishes execution, it should send a message to script A, "B Done". A simple ...
0
votes
3answers
89 views

How to make a process fire an event in another process in c#/.net?

How to make process-1 able to fire an event in process-2, and send along few argument, to signal the 2nd process to do a specific action, and optionally receive a reply? It is possible to do this ...
0
votes
2answers
90 views

Interprocess pub/sub model across c#, c++ and possibly more languages

I want to make a system with several communicating processes. The master process is going raise events. There will be different events each containing structured data. Couple of slave processes are ...
3
votes
1answer
350 views

Trouble with boost::lockfree::queue in shared memory (boost 1.53, gcc 4.7.2 / clang 3.0-6ubuntu3)

I have a problem with placing boost::lockfree::queue<<T, fixed_sized<false>, ..> in shared memory. I need it because I have to be able to insert more than 65535 messages into the queue, ...
0
votes
2answers
140 views

Problems sending/handling signals across two processes on same computer - C programming

I'm having trouble handling signals between two process I have running on my computer. scheduler.c is sending the signals and producer.c receiving them. The producer is supposed to print "Printing n" ...
1
vote
0answers
77 views

How to serialize boost::interprocess::containers::vector

I'd like to use boost serilaization with an boost::interprocess::containers::vector The serialization of a std::vector works fine by including #include ...
0
votes
1answer
161 views

Use redis pub/sub to connect Tornado processes

I have two Tornado processes X and Y. A handler in X handles post requests, and when such a request arrives, in addition to making changes in X, I also want to alter some variables stored in Y. I ...
1
vote
1answer
163 views

fork () and execlp () , printf before execlp() does not get executed

I m learning interprocess communication ...this is the code that bugs me #include <stdio.h> #include <stdlib.h> #include <unistd.h> int main(void) { int pfds[2]; pipe(pfds); ...
7
votes
1answer
219 views

Passing data from a C process to a C++ process

This is my first time posting a question here, I usually find answers in the archive but I'm stumped this time. I'm grabbing data off of a joystick using some code from the vendor that uses Windows ...
2
votes
2answers
348 views

Inter Application Communication in Android

I have an activity in one application that calls the activity of another application. How can be done with intent or any other way. For example in single application, we can do it like: Intent i = ...
1
vote
2answers
640 views

C#: Read and modify settings in another application's app.config file

I have a number of applications running which communicate with each other but none of these applications have their own user interface. I have a system console application which acts as a user ...
1
vote
0answers
104 views

python daemon + interprocess communication + web server

The situation: I have a python script to connect/send signals to serial connected arduino's. I wanted to know the best way to implement a web server, so that i can query the status of the arduinos. I ...
2
votes
1answer
219 views

Create a locked file with boost::interprocess::file_lock

I'd like to use boost::interprocess::file_lock to ensure that files that are written to a directory x by process P1 are not read by process P2 until they are complete. To do this, I'd like to have P1 ...
4
votes
3answers
187 views

How can I make an interprocess data structure in Python?

I have a list (called requestRoster) containing dictionaries (called requests). Items in the 'requests' dictionary are things like 'requestTime' and 'thisURL'. E.g.: [ {'thisURL': ...
1
vote
2answers
299 views

C++ Mutex for Windows

I'm working on a C++ project for Windows and need a good mutex implementation to synchronize b/w processes (i.e. a wrap for the winapi). I'm currently using boost::interprocess::named_mutex, however I ...
4
votes
1answer
68 views

Why boost::interprocess::managed_shared_ptr to non-const can not be converted to managed_shared_ptr to const

As I understand the following is valid for boost::shared_ptr: boost::shared_ptr<SomeData> ptr; ... boost::shared_ptr<const SomeData> c_ptr = ptr; // Valid The same behavior does not ...
3
votes
2answers
250 views

Use Mutex to synchronize C# object: issue with call to ReleaseMutex() in C# object destructor

I have an application code in which I use a mutex to synchronise some code during the creation of an object. The object constructor acquires the mutex and ONLY releases it when the object is no ...
0
votes
0answers
88 views

Boost interprocess lib lib performance issue with named mutex

Is there a konwn issue with boost interprocess lib with named mutex, boost version 1.36. Basically we do: #define BT_MY_LOCK "XX_BT_MY_LOCK_XX" #define WAIT_LOCK named_mutex myLock(open_or_create, ...
0
votes
2answers
39 views

Where is boost's managed_external_buffer defined?

In boost/interprocess/managed_external_buffer.hpp, a template class basic_managed_external_buffer is defined, yet I can't manage to find the actual definition of the managed_external_buffer class ...
0
votes
0answers
62 views

boost::interprocess, how create vector<char *> like container

I've been trying to figure this out but just stuck. I have already working vector container but when trying to convert string to char* with c_str() function always passing address outside the shared ...
0
votes
0answers
82 views

php port socket_create to linux/freebsd c++ sockets [closed]

i need to convert php script to linux/freebsd code , manly sockets now in php i have this code that makes Interprocess Communications f unction get_socket() { $socket = ...
0
votes
0answers
93 views

How to create array of boost::interprocess::interprocess_mutex in maped file?

I'd like to create array interprocess_mutex in mapped file, but don't know how to do that. Could you give some hints are highly appreciated? Thanks in advance! Following is my code snippet, typedef ...
1
vote
3answers
296 views

Simplest python network messaging

I have a machine control system in Python that currently looks roughly like this goal = GoalState() while True: current = get_current_state() move_toward_goal(current,goal) Now, I'm trying ...
1
vote
1answer
161 views

boost interprocess race condition prevention

I am having some issues with a code that is occasionally and sporadically throwing the following exception: boost interprocess: no such file or directory There are multiple codes accessing the same ...
2
votes
1answer
357 views

Python interprocess communication with idle processes

I have an idle background process to process data in a queue, which I've implemented in the following way. The data passed in this example is just an integer, but I will be passing lists with up to ...
6
votes
2answers
922 views

In node.js, how to declare a shared variable that can be initialized by master process and accessed by worker processes?

I want the following During startup, the master process loads a large table from file and saves it into a shared variable. The table has 9 columns and 12 million rows, 432MB in size. The worker ...
1
vote
3answers
581 views

Interprocess communication between C# and Python

I can understand that there has been a lot of questions on this topic but none of them could really solve my problem. So here I have presented my code, and I want my mistakes to be pointed out here. ...
0
votes
1answer
152 views

I know pantheios is thread-safe but is it interprocess safe?

I know pantheios is thread-safe & I have used it fine but is it interprocess safe ? Meaning could different module(differnt exes) logging to the same logging file safely at the same time? If so ...
1
vote
2answers
509 views

Why cant a pipe created using pipe() be used as a bi-directional pipe?

Almost all the pipe examples I've seen advice closing the unused write/read ends. Also man clearly states that pipe() creates a pipe, a unidirectional data channel But I've tried reading and writing ...
1
vote
3answers
241 views

Accessing Elements from Other Processes

I would like to “read” information from a window not related to my program. If I have a process ID and a window handle: Process Proc = Process.GetProcessById(ProcID); IntPtr hdl = ...
6
votes
2answers
5k views

How to start an Android activity from a Unity Application?

I know this seems to be a trivial question but I could not find any concrete answer anywhere on the internet. I saw this very similar question on stackoverflow: How to start Unity application from ...
0
votes
1answer
261 views

How to add CLIPC library in netbeans 7.0

CLIPC is a library for interprocess communication in Java. I have downloaded it from https://sourceforge.net/project/platformdownload.php?group_id=255796 There were 3 files inside the downloaded zip ...
0
votes
2answers
1k views

Writing to boost shared memory

It must have been straight forward answer, but I haven't found anywhere how to do it... I have successfully created a shared memory segment using boost IPC system as in the example: ...
3
votes
1answer
456 views

Working with named pipes in windows (C++/C#)

I have a C++ application that needs to send over images from a webcam in real-time to a C# application on the same PC. The C++ code cannot be called from the C# code so I need to implement ...
0
votes
0answers
313 views

boost 1.49 interprocess example code doesn't compile

I try to compile code like this (linux ubuntu, boost 1.49): #include <boost/interprocess/managed_shared_memory.hpp> #include <boost/interprocess/allocators/allocator.hpp> #include ...
1
vote
1answer
228 views

c# .net memory mapped files across machines

I was wondering if it is possible to access a memory mapped file (c#, .net) from a foreign machine? My instinct tells me "no" but I want to make sure. I'm looking for an IPC mechanism that is ...
2
votes
1answer
1k views

NamedPipeServerStream.EndWaitForConnection() just hangs when used

I'm trying to use named pipes for the first time. In the MS documentation found here, it states that: EndWaitForConnection must be called exactly once for every call to BeginWaitForConnection. ...
0
votes
2answers
278 views

Excel Add-In sharing memory between Class Libraries

Environment : C#, .NET 3.5 , Windows 7 64, Excel 2007, Visual Studio 2010 I have a VS2010 with 3 projects : Projet « Business » : A class library with a global static variable ...
1
vote
0answers
259 views

Boost::interprocess: cannot handle interprocess_exception with managed_shared_memory

I've the following piece of code try { // Vector creation in shared memory. The shm must exist. m_pxShm = new managed_shared_memory(open_only, pcShmName); ...
1
vote
0answers
146 views

Boost interprocess: how to create map<string, string> with custome allocator?

So I faaced map<KeyType, MappedType, std::less<KeyType>, ShmemAllocator> MyMap; from interprocess tutoral I wonder how to make std::string, std::string map?

1 2 3 4