Memory that may be simultaneously accessed by multiple programs

learn more… | top users | synonyms (1)

1
vote
2answers
35 views

shmat returns segmentation fault(core dumped)

Im trying to write into shared memory but for some reason after i call shmat() and strcpy i get segmentation fault(core dumped) why is that? This is my code: int fd,shmid; key_t shmkey; char ...
0
votes
1answer
29 views

Shared memory C++ and Win API 32 with custom class

Are there any samples with getting custom class including large arrays as properties in shared memory? I need read/write access from different threads in same process. Size of class instance is ...
1
vote
0answers
11 views

Anonymous shared memory?

Is there a POSIX-y way to allocating shared memory that's not tied to a specific filename? I.e. memory that is shared between processes only by passing SCM_RIGHTS messages via UNIX domain sockets?
3
votes
0answers
70 views

Shared memory between C++ and JS program

I want to use a shared memory between two different type of programs; C++ and JavaScript. The C++ program should write to memory and the JS program should read simultaneously from the same piece of ...
0
votes
1answer
21 views

Unable to read shared memory data using boost created by Qt

I've created a Qt shared memory program to write a string into shared memory. Now After writing, I need to read it from Boost program. I tried using simple programs, but I couldn't read the string ...
0
votes
1answer
36 views

Android Apps to asynchronously read some kind of buffer

I am currently assigned the task to research and implement two Apps that do the following: App A writes some content to a buffer/register of some sort App A terminates App B starts and reads the ...
1
vote
0answers
60 views

using together static and dynamic shared memory in a CUDA kernel

I am writing a kernel which makes massive use of shared memory. I need both dynamic and static shared memory arrays. This is an example of what I do: __global__ void kernel() { extern __shared__ ...
0
votes
0answers
28 views

the speed of read and write system call on shared memory object in comparison with one of memcpy

I' using shared memory (with semaphore) for communicating between two processes: Fist, I open shared memory object using the call: int fd = shm_open("name") [http://linux.die.net/man/3/shm_open] ...
1
vote
2answers
88 views

Sharing class pointers between processes (UPDATED)

I have a server library which my client executable injects into a remote process. It is the server's responsibility to set up some sort of IPC/RPC implementation to allow the client to seamlessly ...
0
votes
1answer
32 views

Is it safe to perform file-based (fd-based) access on a POSIX shared memory object?

shm_open returns an fd associated with a "shared memory object". And normally, this object is then mapped into virtual memory (with mmap) to access as a memory-mapped file. However, is it safe to ...
0
votes
1answer
41 views

shm_open and ftruncate race condition possible?

From the shm_open man page: A new shared memory object initially has zero length. The size of the object can be set using ftruncate(2). [...] The shm_open() function itself does not create a ...
1
vote
1answer
36 views

Working with shared memory in PHP

Why does shmop_open() not return the shared memory ID, likes it seems to imply that it does in the documentation? On success shmop_open() will return an id that you can use to access the shared ...
0
votes
1answer
44 views

How to grab data from a shared memory segment?

This is my server's code : #include <signal.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/stat.h> #include <sys/ipc.h> #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 ...
0
votes
1answer
27 views

Guide for MemoryFile in Android

I'm currently doing a research on IPCs in Linux and Android. I've found out that Android does have this "ashmem", and I would like to know about MemoryFile in Android. Is there a sample tutorial ...
0
votes
2answers
43 views

Not able to retrieve data from shared memory

Can someone please give some pointers as to where I might be going wrong. I was trying to store pointers to elements of struct type in shared memory. But on fetching the same all I get is zeros. ...
0
votes
0answers
35 views

Exclude process memory region from kernel and heap usage

I'm trying to implement the solution suggested in this question Is it possible to store pointers in shared memory without using offsets? The proposed solution involves specifying a memory to ...
0
votes
0answers
34 views

Can I resize Linux shared memory with shmctl?

I have a C++ application that allocates shared memory on a Linux system via shmget(2). The data that I store in the shared memory grows periodically, and I'd like to resize the shared memory in a way ...
0
votes
1answer
22 views

Does NIO deliver advantages even on consuming small serialized Stream from /dev/shm?

E.g. There is some app (outside of my src control) that produces thousands and thousands of serialized Map instances stored as /dev/shm/{some Map-ID}.ser . They are serialized using the plain old ...
0
votes
1answer
74 views

C, how to use POSIX semaphores on forked processes?

I want to fork multiple processes and then I want to use a semaphore on the forked processes. Here is what I tried: sem_init(&sem, 1, 1); /* semaphore*, pshared, value */ . . . if(pid != 0){ /* ...
0
votes
0answers
18 views

Improving response of X Window by reimplementing X server as a shared library?

As far as I know: Both the X server and X clients are implemented as processes in X Window. Data need to be passed between them (via IPCs) to make things work. Because at least one context switch is ...
0
votes
1answer
40 views

Shared pointer to an array in shared memory, pointer doesn't seem shared?

I have an array in shared memory. I want to use a pointer for iterating through this array, which also is meant to be shared. Here is what I tried: /* initialize color sequence in shared memory ...
0
votes
0answers
17 views

Several UIs accessing one (server) proecess - which IPC?

I'm new here and I have a question which I could not find answered by searching. I've written a program accessing a database in C++ on Linux. Now I would like to be able to give different UI ...
0
votes
1answer
27 views

better Java IPC@Linux tactic: (a) java.nio File API on /dev/shm or (b) JNI to shmctl(2)?

We want write a Java 7 program that will boot (via 2 cmd line invokes) as two separate JVM process instances. We want these 2 processes to communicate with each other using native Linux kernel ...
0
votes
0answers
42 views

Using shared memory with matrices

I want to create a matrix in a shared memory segment. In my second programme I can read tailleX, tailleY but my matrix has just '0' in value. I create my matrix in my function initialiserSegMem and ...
3
votes
4answers
63 views

Linux, share a buffer with another program in fork()

I have a Client/Server model where each client can send a Task to the Server - This is called Task Requesting. This is a base for a simple distributed-computing library i am after. "In other words, ...
0
votes
1answer
40 views

Sum of adding the elements of an array gives me the wrong output? [closed]

I am using shared memory to add the elements of an array using two different child processes but the out put is not wrong. And i get a segmentation fault. int main() { int ...
0
votes
1answer
37 views

“Bad system call” error while working with shared memory

I'm new to shared memory and ive come up with the following code: int main() { int perm=S_IRWXU|S_IRWXG|S_IRWXO; int fd=shmget(IPC_PRIVATE,1024,IPC_CREAT|perm); if(fd<0) { ...
0
votes
2answers
41 views

Why I got these warnings?

The compiler showed the following warnings for the following code segment. Please help me correct it. if((tmp_n = (struct dot *)shmat(shm_net, NULL, 0)) == (int *) -1) { } warning: comparison of ...
1
vote
2answers
50 views

How do shared memory work with arrays?

I'm just learning about shared memory so far everything I've learnt has confused me.Can some one pleas tell me how shared memory handles an array?And also how tow child processes are to access the ...
0
votes
0answers
40 views

How to create a cache with concurrent access in C

I want to build a lightweight cache in C, that has support for concurrent access. I thought of creating a hash table (LRU) through shared memory(shmget). And the accesses/modifications can be done ...
0
votes
2answers
37 views

Shared Memory for transfering Data (NSData) in Objective C

Following codes demonstrate shared memory between two process (server & client ) This code transfer characters between two program , but i want to transfer NSData between two programs within this ...
0
votes
1answer
31 views

How to change the size of QSharedMemory

I want to create a shared memory segment for IPC between processes, but the variables that I want to put in that shared segment is changing dynamically and increasing all the time, the examples I saw ...
1
vote
0answers
17 views

Synchronization in finding tuples satisfying given template

Tuple read(Template template) gets a template of a tuple as parameter and returns a tuple satisfying the template from the buffer (shared memory). void write(Tuple tuple) writes a tuple into the ...
0
votes
1answer
45 views

PHP exec(): Why can I access shared memory, but not named semaphores? (errno = 13)

I'm using the php exec() command to run, get_value.c. get_value.c attached to shared memory reads a value and returns it to my PHP script. It worked just fine during my initial testing of attaching to ...
0
votes
2answers
59 views

c semaphores and shared memory action counter

I am working with semaphores and shared memory. I need create 11 subprocesses. First with I=0 is printing A and others are printing B. Then I need each proces to print message with counter *APtr so ...
1
vote
2answers
47 views

Trouble passing _EXCEPTION_POINTERS * using FileMapping

I wanted to do a out-of-process exception handler and i had created a watch-dog process which does dedicated exception handling when child process raises exception. I had successfully invoked the ...
2
votes
2answers
73 views

Python multiprocessing.Process object behaves like it would hold a reference to an object in another process. Why?

import multiprocessing as mp def delay_one_second(event): print 'in SECONDARY process, preparing to wait for 1 second' event.wait(1) print 'in the SECONDARY process, preparing to raise ...
1
vote
1answer
108 views

passing c++ char* to c# via shared-memory

Sorry for probably simple question but I'm newbie in shared memory and trying to learn by example how to do things. On c++ side I receive such pair: const unsigned char * value, size_t length On c# ...
1
vote
1answer
52 views

Segfault after accessing a structure in shared memory?

I have a problem with sharing values stored in a struct across processes. Below my code is simplified with only one process, which will increment the value num2. Whenever the process ends, waitpid() ...
0
votes
2answers
94 views

How to use Shared Memory (IPC) in Android

I've already written a simple Shared Memory C program in Linux. How can I use Shared Memory (or should I call it "ashmem?") in Android? I hope you can give me a step-by-step guide.
6
votes
2answers
91 views

Shared memory and copy on write or rvalue references and move semantics?

Is a shared memory/copy on write implementation for general containers (like that found in Qt's containers) superseded by C++11 move semantics and rvalue references? Where does one fail and the other ...
0
votes
1answer
36 views

Why does MapViewOfFile fail with ERROR_ACCESS_DENIED?

I came across this situation with WinAPI's MapViewOfFile function. An Internet search didn't turn up any apparent fixes, so I will share my problem and solution here. Consider the following snippet: ...
1
vote
1answer
33 views

find the pages accessed by thread

I am looking for some scheduling options based on data accessed by threads. Is there any way to find the pages of cache accessed by a specific thread. If i have two threads from two different ...
5
votes
1answer
111 views

Making my NumPy array shared across processes

I have read quite a few of the questions on SO about sharing arrays and it seems simple enough for simple arrays but I am stuck trying to get it working for the array I have. import numpy as np ...
7
votes
1answer
159 views

I have a c++ program running on linux, is it possible to have it periodically store state snapshots in shared memory for post-crash recovery?

I'm not sure how to go about it as I've seen examples of shared memory used for interprocess communication. I was wondering if I could leverage it from within a server to take, say, periodic snapshots ...
2
votes
0answers
46 views

Accessing shared memory from WCF app running under VS2010 and IIS7 Express

I'm developing a WCF app that needs to communicate with a custom Windows service through shared memory. My development environment is Windows 7 Professional with IIS7, IIS7 Express and Visual Studio ...
0
votes
1answer
130 views

pointers in shared memory - C language Linux

I have shared Memory like this struct MEMORY { char * type; int number; } now in code I make it shared everything works probably but other process can't see what pointer points to how can I use ...
1
vote
1answer
45 views

Strange behavior regarding CUDA shared memory

I am using a GTX9800 which reports available shared memory as 16384 bytes Given the following kernel code, run with T = int (4 bytes) template <typename T> __global__ void foo(unsigned n, T ...
0
votes
0answers
35 views

DLL Shared Memory IPC Synchronization

I have set up IPC between two processes via shared memory. The shared memory gets created inside a DLL and is used by exported functions. With those two functions the data is readed / written: struct ...

1 2 3 4 5 18