4
votes
4answers
49 views
How to query a variable in another running application in c#?
I have an app that, when launched, checks for duplicate processes of itself.
That part I have right - but what I need is to check a state variable in the original running process …
0
votes
0answers
10 views
Can address space be recycled for multiple calls to MapViewOfFileEx without chance of failure?
Consider a complex, memory hungry, multi threaded application running within a 32bit address space on windows XP.
Certain operations require n large buffers of fixed size, where o …
0
votes
2answers
192 views
Re: Shared Memory and Semaphores
Is an IPC mechanism using shared memory and semaphores for synchronization simplex like pipes or duplex like message queues?
2
votes
2answers
251 views
using shared memory with php and c?
Can you use shared memory to communicate between php scripts and c program in windows?
The c program runs all the time and uses memory mapped files ie:
handle1 = CreateFileMappi …
5
votes
4answers
166 views
Shared memory vs. Go channel communication
One of Go's slogans is Do not communicate by sharing memory; instead, share memory by communicating.
I am wondering whether Go allows two different Go-compiled binaries running on …
3
votes
3answers
225 views
Mutex in shared memory
Suppose a process is creating a mutex in shared memory and locking it and dumps core. Now in another process how do i ensure that mutex is already locked but not owned by any proce …
0
votes
2answers
34 views
MPI overhead in shared memory setup.
I want parallelize a program. It's not that difficult with threads working on one big data-structure in shared memory.
But I want to be able to use distribute it over cluster and I …
2
votes
4answers
159 views
How to combine Pool.map with Array (shared memory) in Python multiprocessing?
I have a very large (read only) array of data that I want to be processed by multiple processes in parallel.
I like the Pool.map function and would like to use it to calculate fun …
2
votes
4answers
172 views
Is there a way to determine if free() would fail?
Is there a way to determine if free() would fail if ever called on a certain memory block pointer?
I have the following situation: a thread having access to a shared resource fail …
2
votes
4answers
31 views
Does PHP copy variables when retrieving from shared memory?
If I run an shm_get_var(), will it return a "reference", keeping the data in shared memory?
I'm wanting to keep an array about 50MB in size in shared memory so that it can be used …
0
votes
1answer
36 views
IPC message queue. msgrcv system call. System V. how to get out of loop.
Hi, I have a message queue from which I am getting messages in a loop. The problem is that I don't know how to exit the loop. msgrcv returns type size_t so it keeps going. What val …
0
votes
2answers
78 views
Creating accessing shared memory in C.
So I have a problem that I don't really know how to go about. I was hoping maybe you could let me know how to deal with it.
I need to allocate N number of buffers in shared memory …
0
votes
2answers
36 views
message queue. msgsend msgrcv. System V IPC system calls in C (Linux)
Hi I'm working with some shared memory where different processes read and write data. I'm using a message queue to store messages of when data has changed between read and write op …
3
votes
6answers
196 views
How does one keep an int and an array in shared memory in C?
I'm attempting to write a program in which children processes communicate with each other on Linux.
These processes are all created from the same program and as such they share co …
5
votes
5answers
852 views
Anyone have a good shared memory container for C++?
I've long had a desire for an STLish container that I could place into a shared memory segment or a memory mapped file.
I've considered the use of a custom allocator and placement …
