0
votes
2answers
62 views
memory mapped files system call - linux
When we map a file to memory, a system call is required. Do subsequent accesses to the file require system calls or is the virtual memory page of the process mapped to the actual p …
3
votes
3answers
155 views
malloc vs mmap in C
Hi,
I built two programs, one using malloc and other one using mmap. The execution time using mmap is much less than using malloc.
I know for example that when you're using mmap …
0
votes
5answers
48 views
File projection into memory using mmap
Hi,
I'm trying to project a file into memory to operate with it. The file contais structs so I'm trying to use a pointer to the start of one struct and then read it and modify som …
5
votes
7answers
271 views
Why doesn’t Python’s mmap work with large files?
I am writing a module that amongst other things allows bitwise read access to files. The files can potentially be large (hundreds of GB) so I wrote a simple class that lets me trea …
3
votes
4answers
87 views
Python File Slurp w/ endian conversion
It was recently asked how to do a file slurp in python:
link text
And it was recommended to use something like
with open('x.txt') as x: f = x.read()
How would I go about doing …
1
vote
6answers
358 views
How big can a memory-mapped file be?
What limits the size of a memory-mapped file? I know it can't be bigger than the largest continuous chunk of unallocated address space, and that there should be enough free disk s …
6
votes
12answers
588 views
What is the fastest way to read 10 GB file from the disk?
We need to read and count different types of messages/run
some statistics on a 10 GB text file, e.g a FIX engine
log. We use Linux, 32-bit, 4 CPUs, Intel, coding in Perl but
the la …
1
vote
1answer
106 views
mmap and access to GPIO config registers in an ARM processor
Im struggling to read(and write) to HW registers from Linux user space. The goal is to configure some GPIO pins from and be able to set and read this pins.
According to the spec f …
0
votes
2answers
163 views
Linux mmap() error
I have a memory mapped file, from which I wish to parse the contents of the buffer. The mmap() returns success, and I can print out the buffer contents to a file using fprintf succ …
0
votes
2answers
85 views
wx.TextCtrl.LoadFile()
I am trying to display search result data quickly. I have all absolute file paths for files on my network drive(s) in a single, ~50MB text file. The python script makes a single p …
2
votes
3answers
1k views
How to share APC cache between several PHP processes when running under FastCGI?
I'm currently running several copies of PHP/FastCGI, with APC enabled (under Apache+mod_fastcgi, if that matters). Can I share cache between the processes? How can I check if it' …
1
vote
1answer
126 views
mmap(2) vs mmap(3)
Does anyone know what the difference between mmap(2) and mmap(3) is? Man section 3 is described as "This chapter describes all library functions excluding the library functions de …
3
votes
1answer
94 views
mmap to overlay VME bus into user space memory over a PCI?
I'm trying to map a VME address space through a PCI bus into user space so I can perform regular read/writes on the memory.
I have done this with another PCI device like this :-
…
1
vote
3answers
151 views
mmaping large files(for persistent large arrays)
Hello!
I'm implementing persistent large constant arrays via mmap. Is there any tips and tricks or gotchas one should be aware when using mmap?
1
vote
4answers
464 views
Examining mmaped addresses using GDB
I'm using the driver I posted at http://stackoverflow.com/questions/647783/direct-memory-access-in-linux/ to mmap some physical ram into a userspace address. However, I can't use G …
