Tagged Questions
Memory that may be simultaneously accessed by multiple programs
13
votes
7answers
1k views
shared memory, MPI and queuing systems
My unix/windows C++ app is already parallelized using MPI: the job is splitted in N cpus and each chunk is executed in parallel, quite efficient, very good speed scaling, the job is done right.
But ...
12
votes
3answers
222 views
'Shared Object Memory' vs 'Heap Memory' - Java
What is difference between 'Shared Object Memory' and 'Heap Memory' in Java. Is it like 'Shared Object Memory' is superset of 'Heap Memory'?
The source of this question is documentation of jmap. It ...
12
votes
1answer
898 views
Why do I need a memory barrier?
C# 4 in a Nutshell (highly recommended btw) uses the following code to demonstrate the concept of MemoryBarrier (assuming A and B were run on different threads):
class Foo{
int _answer;
bool ...
12
votes
3answers
453 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 the same machine to ...
10
votes
1answer
230 views
Platform independent memory mapped [file] IO
I've spent some time investigating memory mapped IO for an application I'm working on. I have some very large (TB scale) files, and I want to map segments from them into memory, for both reading and ...
10
votes
3answers
1k views
Do pthread Mutexs work across threads if in shared memory?
I found this:
http://stackoverflow.com/questions/2284730/fast-interprocess-synchronization-method
I used to believe that a pThread mutex can only be shared between two thraeds in the same address ...
9
votes
1answer
193 views
Placing Python objects in shared memory
Is there a Python module that would enable me to place instances of non-trivial user classes into shared memory?
By that I mean allocating directly in shared memory as opposed to pickling into and ...
9
votes
7answers
272 views
Does a CPU assigns a value atomically to memory?
A quick question I've been wondering about for some time; Does the CPU assign values atomically, or, is it bit by bit (say for example a 32bit integer).
If it's bit by bit, could another thread ...
9
votes
5answers
13k views
How to implement shared memory in .NET?
I have a C++.NET app and a C#.NET app. I would like them to communicate via shared memory.
How is it possible in .NET version 2.0 ?
Mainly want to share a queue object.
8
votes
1answer
305 views
Python fork(): passing data from child to parent
I have a main Python process, and a bunch or workers created by the main process using os.fork().
I need to pass large and fairly involved data structures from the workers back to the main process. ...
8
votes
4answers
485 views
Of these 3 methods for reading linked lists from shared memory, why is the 3rd fastest?
I have a 'server' program that updates many linked lists in shared memory in response to external events. I want client programs to notice an update on any of the lists as quickly as possible (lowest ...
7
votes
1answer
194 views
Distributed Shared Memory in .NET
Are there any existing libraries/frameworks/products for a distributed shared memory system implemented in .NET, or easily accessible from .NET clients?
Googling gives some links to academic papers, ...
7
votes
3answers
2k views
Posix shared memory vs mapped files
Having learnt a bit about the subject, can anyone tell, what is the real difference between POSIX shared memory (shm_open) and POSIX mapped files (mmap)?
Both seems to use the /dev/tmpfs subsystem, ...
7
votes
4answers
2k views
Mutex in shared memory when one user crashes?
Suppose that a process is creating a mutex in shared memory and locking it and dumps core while the mutex is locked.
Now in another process how do I detect that mutex is already locked but not owned ...
7
votes
4answers
1k views
When should I use Scope Locking (Application, Server, etc…) vs named locking in ColdFusion?
When is it appropriate to use <cflock scope="application"> or it's ilk as opposed to <cflock name="foo">?
Specifically, I'm interested in using CFLock to protect shared objects in the ...
7
votes
5answers
3k 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 new to place a ...
6
votes
1answer
243 views
Using shared memory with fork()
I already looked at the only similar post I could find, but it wasn't what I was looking for.
Basically, I'm trying to run the Odd-Even Sort with forking, so the child runs odds and parent runs the ...
6
votes
2answers
318 views
How to choose a fixed address for shared memory mapping
I would like to use shared memory between several processes, and would like to be able to keep using raw pointers (and stl containers).
For this purpose, I am using shared memory mapped at a fixed ...
6
votes
4answers
269 views
Java concurrency question [closed]
Possible Duplicate:
Thread safety in Java class
I'm reading Java concurrency in Practice (good book so far), and I've come to an example that puzzles me.
The authors state that this class ...
6
votes
6answers
305 views
Is this a safe way to share read-only memory with child processes?
I want to allocate and initialise a fairly large chunk of contiguous memory (~1GB), then mark it as read-only and fork multiple (say several dozen) child processes which will use it, without making ...
6
votes
4answers
2k views
System V shared memory in Python?
How can I make use of the shmat(), shmdt(), shmctl(), shmget() calls from Python? Are they hidden somewhere in the standard library?
Update0
I'm after System V bindings that can be found in the ...
6
votes
5answers
861 views
Instantiating objects in shared memory C++
We have a need for multiple programs to call functions in a common library. The library functions access and update a common global memory. Each program’s function calls need to see this common global ...
6
votes
4answers
2k 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 functions on that data ...
5
votes
2answers
167 views
mmap physically contiguous memory
I might have some misconceptions here, so bear with me.
I wrote a program that captures images from a camera. I am sharing the memory between the camera and my application with mmap as I found in ...
5
votes
2answers
239 views
ftok() collisions
I am using ftok() to generate identifiers for shared memory segments used by a C application. I am having problems, where on one box I am getting collisions with the identifiers used by root. I can ...
5
votes
1answer
225 views
Why does IPC::SysV->shmget respond with EINVAL?
I am currently running perl 5.8.8 on a server and I'm trying to install 5.14.
I configured it to usethreads and use64bitint and otherwise the defaults it suggested.
make ran without problems, but ...
5
votes
2answers
345 views
Shared memory file in PHP
I use openssl_pkcs7_sign and openssl_pkcs7_encrypt to create encrypted data. The functions only accept file names. I would like to store the temporary files in shared memory to improve performance. I ...
5
votes
2answers
139 views
Implementation of Java's memory model?
There is a specification of Java memory model.
And I want to dive into the source code to actually investigate how those mechanisms are implemented. (e.g., synchronized, volatile, ..., etc.)
But ...
5
votes
2answers
535 views
How much memory should 'managed_shared_memory' allocate? (boost)
I'm looking for a definitive answer (if indeed one exists) on how much memory should be allocated when creating a static chunks of shared memory via boost::interprocess's managed_shared_memory. Even ...
5
votes
2answers
380 views
Can shared memory be read and validated without mutexes?
On Linux I'm using shmget and shmat to setup a shared memory segment that one process will write to and one or more processes will read from. The data that is being shared is a few megabytes in size ...
5
votes
5answers
367 views
How do you efficiently debug reference count problems in shared memory?
Assume you have a reference counted object in shared memory. The reference count represents the number of processes using the object, and processes are responsible for incrementing and decrementing ...
5
votes
2answers
454 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 update those ...
5
votes
4answers
7k views
Good alternative to shared memory IPC for Java/C++ apps on Linux
I'm currently using shared memory for IPC between Java and C++ apps, but looking for a more convenient alternative.
Can someone advice better method, but with same performance speed?
Thanks!
4
votes
2answers
141 views
Passing a method-containing record between host application and DLL
Is it possible (without the use of Runtime Packages or the Shared Memory DLL) to pass a Record type between the host application and a DLL module where the Record type contains Functions/Procedures ...
4
votes
2answers
124 views
Reading Shared Memory from x86 to x64 and vice versa on OSX
If I create a SM from 64 bit application and open it on 32 bit application it fails.
//for 64 bit
shared_memory_object( create_only, "test" , read_write) ;
// for 32 bit
shared_memory_object ...
4
votes
3answers
183 views
Sharing memory between Windows Service and Application, what is easiest?
I need my Service to update fields in shared memory for a client application to read and display. I've found my current solution to be ineffective because of Session 0 Isolation.
I've renamed the ...
4
votes
1answer
160 views
php shared memory reads all 0s
The php code is supposed to read the shared memory I create in a C program below. However, I am reading all 0s no matter what I set the values in the shared memory to.
php code:
<?php
...
4
votes
3answers
534 views
communicating between processes with shared-memory results zero-copy?
I am writing a network daemon, on Linux with kernel 2.6, which has
one producer process and N of consumer processes, which does not make any change on the data, and does not create any response back ...
4
votes
1answer
199 views
What is the best kind of diagram to illustrate the workings of a semaphores / multiprocess / shared memory program?
I have made a small project in which I have used various processes / shared memory / semaphores.
I am now going to have to explain my code and the program logic to both my lecturer and a couple of ...
4
votes
1answer
494 views
Fastest IPC in PHP
I wonder, which is the fastest way to send data from one process to other in PHP? The data is only a short string. Curretly I have a solution with AF_UNIX sockets developed, but benchmarks show that ...
4
votes
4answers
2k views
C - fork() and sharing memory
I need my parent and child process to both be able to read and write the same variable (of type int) so it is "global" between the two processes.
I'm assuming this would use some sort of ...
4
votes
4answers
1k views
Is it possible to store pointers in shared memory without using offsets?
When using shared memory, each process may mmap the shared region into a different area of its respective address space. This means that when storing pointers within the shared region, you need to ...
4
votes
4answers
100 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 in order to run some ...
4
votes
3answers
875 views
Distributed shared memory library for C++?
I am writing a distributed application framework in C++. One of the requirements is the provision of distributed shared memory. Rather than write my own from scratch (and potentially re-invent the ...
4
votes
3answers
3k views
Why use SysV or POSIX shared memory vs mmap()?
Needing to use IPC to pass large-ish amounts of data (200kb+) from a child process to a parent on OS X 10.4 and above, I read up on shared memory on Unix, specifically System V and POSIX shared memory ...
3
votes
3answers
98 views
Memory Mapped Files - Map a structure not a file?
I'm very new to Memory Mapped Files, and I'm a little lost on something.
I know that if I had a file, I could load it and access it from various processes at once using MMaps.
But in my situation, ...
3
votes
2answers
168 views
Memory-mapped files: pros and cons?
I need to share data between two Java applications running on the same machine (two different JVMs). I precise that the data to be shared is large (about 7 GB). The applications must access the data ...
3
votes
3answers
147 views
ELF64/x86_64 and start address of the memory mapping segment (for shared objects)
I have written several program and found out that when compiled in 64bit, the memory mapping segment (where for example shared objects and shared memory are kept) is always located somewhere around ...
3
votes
2answers
173 views
Does EhCache take advantage of all nodes' memory like MemCached?
The MemCached documentation mentions data is distributed across nodes. That's their definition of distributed cached. If a node A needs data that is on node B, data is transferred from B to A. If A ...
3
votes
3answers
201 views
Giving access to shared memory after child processes have already started
How do I give child processes access to data in shared memory if the data is only available after the child processes have been spawned (using multiprocessing.Process)?
I am aware of ...