1
vote
3answers
132 views
map file in to the ram
Platofrm - Linux, Arch - ARM
Programming lang - C/C++
Objective - map a regular (let say text) file to a pre-known location (physical address) in ram and pass that physical address to some other …
2
votes
3answers
33 views
What are the most efficient idioms for streaming data from disk with constant space usage?
Problem Description
I need to stream large files from disk. Assume the files are larger than will fit in memory. Furthermore, suppose that I'm doing some calculation on the data and the result is …
0
votes
1answer
68 views
why does the memory mappped region grow down in Linux
Consider this
because this region maps the files like dynamically loaded libraries, i feel it should ideally grow up. this can be implemented by starting the mmap region between RLIMIT_STACK and heap …
0
votes
2answers
96 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 page cache in memory?
…
3
votes
3answers
313 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 you avoid …
0
votes
5answers
85 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 some variable.
The …
5
votes
7answers
368 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 treat the file like a …
3
votes
4answers
122 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 this to read the …
1
vote
1answer
165 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 for the …
0
votes
2answers
105 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 pass over every line …
2
votes
1answer
150 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 described in chapter …
6
votes
12answers
636 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 language doesn't …
3
votes
1answer
112 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 :-
unsigned long …
1
vote
3answers
168 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?
0
votes
2answers
185 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 successfully. However, …
