Tagged Questions
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 ...
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
5answers
344 views
How to implement a hello world shared memory in c/c++ in windows?
Is shared memory stable at the first place?
I prefer this way to inter-process/application communication because that way I don't need the overhead of parsing data.
Is there a good hello world demo ...
3
votes
1answer
2k views
Program to view Shared Memory in Windows?
I'm looking for a program to view and browse the (local) shared memory in Windows x32/x64.
I know this exists because I've seen it in action before. For some reason Google and MSDN fail me on this ...
2
votes
1answer
68 views
Behavior of 32 bit applications in 64 bit Windows (memory)
I am developing a 32 bit application in .NET that for various reasons cannot be compiled as a 64 bit application.
I need to run many of these concurrently and they use a lot of memory. I want to load ...
2
votes
2answers
41 views
Are sockets communicating on the same PC that much slower than using shared memory?
I have a Windows DLL that provides video to an external application. My main application creates each video frame and I use globally shared memory backed by the system page file to pass that frame to ...
2
votes
2answers
131 views
Are memory-mapped files thread safe
I was wondering whether you could do multithreaded writes to a single file by using memory-mapped files, and making sure that two threads don't write to the same area (e.g. by interleaving fixed-size ...
2
votes
4answers
123 views
How do I protect a character string in shared memory between two processes?
I have a piece of shared memory that contains a char string and an integer between two processes.
Process A writes to it and Process B reads it (and not vice versa)
What is the most efficient and ...
2
votes
4answers
216 views
looking for Windows RAM-based shared memory solution in C++
I'm facing a situation where I need to pass up to several hundreds of megabytes of memory from one process to another. Right now I'm doing it via files and it's too slow.
I guess that to make it ...
2
votes
6answers
660 views
Keeping persistent data in memory
I am about to develop a Windows service in C#. This service needs to keep track of events in the system, and write some data to files from time to time. These ongoing events form a certain state, so ...
2
votes
3answers
386 views
What is the /dev/shm equivalence in Windows System?
I was wondering how can I make the IO faster by writing and reading temporary files to main memory. I've used to write to /dev/shm in Linux.
But now I'm in Windows 7. Anyone knows the answer ?
...
2
votes
3answers
429 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 only one buffer needs ...
2
votes
2answers
526 views
How to emulate shm_open on Windows?
My service needs to store a few bits of information (at minimum, at least 20 bits or so, but I can easily make use of more) such that
it persists across service restarts, even if the service crashed ...
1
vote
2answers
130 views
CreateMutex and OpenMutex return NULL
I'm writing an application with shared memory and am creating named mutexes with the appropriate "Local\" prefix on the name. However, every time I call the CreateMutex function to create the handles, ...
1
vote
1answer
67 views
Concerns using Shared Memory with CreateFileMapping and MapViewofFile
I have 2 questions concerns about using shared memory. I'm using CreateFileMapping to create a shared memory area between two processes.
1) I understand that I need to call CloseHandle on every ...
1
vote
1answer
92 views
What happens to shared memory if one of the process sharing the memory is killed?
I was working on shared memory and this question came in my mind so thought of asking from experts:
What happens to the shared memory if one of the process sharing the memory is killed? What happens ...
1
vote
1answer
182 views
Windows: Resize shared memory
When I create a shared memory segment on Windows (like CreateFileMapping(INVALID_HANDLE_VALUE, ...)), is there any way to resize it, other than creating a bigger segment and copying the data?
I've ...
1
vote
3answers
499 views
Slow shared memory performance when moved to 64-bit OS
I am having an issue with a 32-bit legacy app running on 64-bit windows. The app in question uses CreateFileMapping to create shared memory. When this is run on 64-bit Windows any attempt to access ...
1
vote
1answer
726 views
C++ Read from shared memory
I want to read status information that an application provides via shared memory. I want to use C++ in order to read the content of that named shared memory and then call it with pinvoke from a ...
0
votes
2answers
95 views
How to get the next page/part/view of file, if i read part of file using MapViewOfFile?
I am trying to use combination of functions CreateFileMapping , MapViewOfFile, FlushViewOfFile.
the total buffer size is more than the mapped view.
example buffer is 50KB. and mapped view is 2KB. in ...
0
votes
2answers
67 views
Is it possible to increase the shared memory size after creating using api “CreateFileMapping”?
I am sharing a memory data between multiple processes as per design.
As per design the application requires multiple memory files, like each process requires one memory map file. But some processes ...
0
votes
1answer
91 views
GetFileSizeEx fails for file mapping
Im having trouble creating a named shared memory and inspecting its size. The function GetFileSizeEx fails when I call it in a function like this. Any ideas on how to debug this?
void ...
0
votes
1answer
128 views
Allocate the size of memory mapped files dynamically in Windows Mobile
I am trying to find a way to allocate memory dynamically for memory mapped files that are shared between different processes. My design is as follows: In Windows mobile, I am writing a Display Thread ...
0
votes
2answers
77 views
Microsoft Windows - Handling memory
Could anyone explain about how Windows operating system handles the memory?
For eg:
In Solaris, the memory allocated by the process will not be freed immediately, and it will be the free cache ...
0
votes
2answers
155 views
IPC bottleneck?
I have two processes, a producer and a consumer. IPC is done with OpenFileMapping/MapViewOfFile on Win32.
The producer receives video from another source, which it then passes over to the consumer ...
0
votes
3answers
437 views
What is the preferred method of passing data between a service and an application [closed]
Possible Duplicate:
Delphi 2009: How to communicate between Windows service & desktop application under Vista?
I have a server running as a Windows service. To control the service and to ...
0
votes
5answers
4k views
Using shared memory under Windows. How to pass different data
I currently try to implement some interprocess communication using the Windows CreateFileMapping mechanism. I know that I need to create a file mapping object with CreateFileMapping first and then ...