1
vote
3answers
136 views
Linux 3/1 virtual address split
I am missing something when it comes to understanding the need for highmem to address more than 1GB of RAM. Could someone point out where I go wrong? Thanks!
What I know:
1 GB …
2
votes
2answers
56 views
Retrieving the memory map of its own process in OS X 10.5/10.6
In Linux, the easiest way to look at a process' memory map is looking at /proc/PID/maps, giving something like this:
08048000-08056000 r-xp 00000000 03:0c 64593 /usr/sbin/gp …
1
vote
3answers
192 views
Operations and functions that increase Virtual Bytes
Having some out-of-memory problems with a 32-bit process in Windows I begun using Performance Monitor to log certain counters for that process.
Though it is normal that Virtual By …
0
votes
4answers
167 views
How to use virtual memory (swap in linux file system ) in java web programming
I work in java web application . In some section i use very huge tree variable that save and persist in memory (RAM) . Can i migrate this to virtual memory (swap) .
note : huge tre …
5
votes
9answers
344 views
Pointer Implementation Details in C
I would like to know architectures which violate the assumptions I've listed below. Also I would like to know if any of the assumptions are false for all architectures (i.e. if an …
6
votes
12answers
653 views
Get JVM to grow memory demand as needed up to size of VM limit?
We ship a Java application whose memory demand can vary quite a lot depending on the size of the data it is processing. If you don't set the max VM (virtual memory) size, quite …
0
votes
3answers
248 views
Windows 32-bit virtual memory page mapping issue
Hello everyone,
I am learning from here about Windows 32-bit virtual memory page mapping,
(I am targeting modern Windows versions, like Vista, Win 7, Server 2003/2008 32-bit vers …
0
votes
4answers
76 views
Computer System Class and Virtual Memory - Need help with the Algebra
I have what might be more of a math question but this question is stemming from reading my computer systems book in the chapter on Virtual Memory... so I feel justified asking it h …
3
votes
6answers
4k views
Virtual Memory Usage from Java under Linux, too much memory used
I have a problem with a java application running under linux.
When I launch the application, using the default maximum heap size (64mb), I see using the tops application that 240 …
7
votes
14answers
971 views
How to avoid running out of memory in high memory usage application? C / C++
I have written a converter that takes openstreetmap xml files and converts them to a binary runtime rendering format that is typically about 10% of the original size. Input file si …
7
votes
6answers
506 views
legacy gcc compiler issues
We are using a legacy compiler, based on gcc 2.6.0, to cross compile for an old imbedded processor we are still using (yes, it is still in use since 1994!). The engineer that did t …
0
votes
2answers
322 views
iPhone app uses 60mb of virtual memory on startup
Now, I know my app uses a lot of graphics, but not 60mb of graphics. However, Instruments shows me that the app is using 60+mb of virtual memory just after startup. The compiled ap …
2
votes
5answers
556 views
Is there a way to increase virtual memory in an application started from NetBeans?
In my project I often encounter Java heap space errors, i.e., there isn't enough space to run the program any more. Is there any way I can increase virtual memory?
I am not using …
1
vote
2answers
337 views
How can I use a page table to convert a virtual address into a physical one?
Lets say I have a normal page table:
Page Table (Page size = 4k)
Page #: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Page Frame #: 3 x 1 x 0 x …
2
votes
7answers
403 views
Java and virtual memory handling
Is it possible tell the JVM to hint the OS that a certain object should preferably not get pushed out to swap space?
