Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
6answers
30k 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 MB of virtual Memory ...
11
votes
3answers
913 views

How to reliably measure available memory in Linux?

Linux /proc/meminfo shows a number of memory usage statistics. MemTotal: 4040732 kB MemFree: 23160 kB Buffers: 163340 kB Cached: 3707080 kB SwapCached: 0 kB ...
10
votes
1answer
87 views

Virtual machines

I've been trying to figure out how VMware works (specifically when Linux is installed) and I have a couple of questions: What happens when VMware encounters a command like push cs ? Specifically cs ...
10
votes
5answers
465 views

Allocating largest buffer without using swap

In C/C++ under Linux, I need to allocate a large (several gigabyte) block of memory, in order to store real-time data from a sensor connected to the ethernet port and streaming data at about 110MB/s. ...
10
votes
11answers
1k 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 any of them are just ...
9
votes
2answers
342 views

.NET garbage collector and x64 virtual memory

Running a .NET application on Windows Server 2008 x64 with 16GB of RAM. This application needs to fetch and analyze a very large amount of data (about 64GB), and keep it all in memory at one time. ...
9
votes
14answers
2k 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 sizes are typically ...
8
votes
2answers
323 views

Memory mapped file std::allocator implementation freezes WM6 device

I have a Visual Studio 2008 C++ project for Windows Mobile 6.x where I need more memory than is available to me in the 32MB process slot. So, I'm looking at using memory mapped files. I've created a ...
8
votes
14answers
3k 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 often the JVM quits ...
7
votes
3answers
595 views

How to get a struct page from any address in the Linux kernel

I have existing code that takes a list of struct page * and builds a descriptor table to share memory with a device. The upper layer of that code currently expects a buffer allocated with vmalloc or ...
7
votes
3answers
160 views

In what circumstances can large pages produce a speedup?

Modern x86 CPUs have the ability to support larger page sizes than the legacy 4K (ie 2MB or 4MB), and there are OS facilities (Linux, Windows) to access this functionality. The Microsoft link above ...
7
votes
6answers
1k 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 the gcc port for this ...
6
votes
3answers
228 views

What happens when the RAM is over in C#?

I'm no computer expert, so let me try to put this question a little bit more specifically: I do some scientific computations, and the calculations sometimes requires a lot of memory to store their ...
6
votes
5answers
355 views

Preventing a heavy process from sinking in the swap file

Our service tends to fall asleep during the nights on our client's server, and then have a hard time waking up. What seems to happen is that the process heap, which is sometimes several hundreds of ...
5
votes
5answers
246 views

I want an arbitrarily-large buffer in Linux/C/C++

Basically I want an arbitrarily large stack. I know that's not possible, but could I set aside a few terabytes of my virtual address space for it? I'd like to be able to start at the beginning and ...
5
votes
2answers
718 views

Linux(ubuntu), C language: Virtual to Physical Address Translation

As the title suggest I have a problem of extrapolating the physical address from a virtual one. Let me explain: Given a variable declaration in process space, how can I derive it's physical address ...
5
votes
2answers
355 views

Why 16-bit address with 12-bit offset results in 4KB page size?

I'm reading the "Modern Operating System" book. And I'm confused about the "Page Size". In the book, the author says, The incoming 16-bit virtual address is split into a 4-bit page number and ...
5
votes
1answer
351 views

malloc behaves differently on different machines

I see totally different behavior when running a piece of program that tries to exceed RSS on different machines. The code is something like: ... char** s = (char**)malloc(10000*sizeof(char*)); ...
4
votes
6answers
289 views

Java program with 16GB virtual memory and growing: is it a problem?

On Mac OSX 5.8 I have a Java program that runs at 100% CPU for a very long time -- several days or more (it's a model checker analyzing a concurrent program, so that's more or less expected). ...
4
votes
1answer
906 views

Can't understand Belady's anomaly?

So Belady's Anomaly states that when using a FIFO page replacement policy, whena adding more page space we'll have more page faults. My intuiton says that we should less or at most, the same number ...
4
votes
3answers
304 views

How to reduce virtual memory by optimising my PHP code?

My current code (see below) uses 147MB of virtual memory! My provider has allocated 100MB by default and the process is killed once run, causing an internal error. The code is utilising curl multi and ...
4
votes
6answers
338 views

automatic/static memory allocation

Maybe a naive question, but... Confirm or deny: The existence of memory for objects/variables of automatic and static storage duration is determined compile-time and there is absolutely zero chance ...
4
votes
4answers
299 views

Memory Management - How and when to write large objects to disk

I am working on an application which has potential for a large memory load (>5gb) but has a requirement to run on 32bit and .NET 2 based desktops due to the customer deployment environment. My ...
4
votes
1answer
56 views

Is an Object the smallest pageable unit in the Heap?

If I have a 2 GB ram and I have an 2 instances of an Object which is 1.5 GB each, the operating system will help and context switch the pages to and from harddisk. What if I have 1 instances but is ...
4
votes
4answers
382 views

Can I run out of virtual memory on linux?

My application similar to hypotetical program: for(;;) { for (i=0; i<1000; i++) { p[i] = malloc(random_number_between_1000_and_100000()); p[i][0]=0; // update } for (i=0; ...
3
votes
1answer
41 views

about virtual memory

I have this subtle question about virtual memory. In one book I read this quote When the ELF file is executed, the text and the two data segments are loaded into separate areas of virtual ...
3
votes
1answer
88 views

What's exactly behind / inside iPhone memory management?

This question is NOT about retain/release things in iphone memory management. I understand the routine quite well and there is no memory leak things in my app. I pop up the question shown in the ...
3
votes
1answer
179 views

Higher half kernel initialization

When initializing my kernel, I have a few things that need to happen: 1) paging needs to be enabled, 2) the physical memory manager needs to parse the memory map from grub, and 3) assorted startup ...
3
votes
2answers
506 views

C program to find the virtual memory used by a process on HP-UX?

This question was asked to me in an interview: Write a simple C program to find the virtual memory used by a running process on unix (HP-UX) I told them that I am not exactly sure but also came up ...
3
votes
1answer
156 views

The mystery number '63' in the context of demand paging

I am running a code that mimics demand paging system here are some of the parameters: Page size = 4096 bits Processor = 32 bits Number of page frames = (variable) I run my code with a fifo or ...
3
votes
1answer
159 views

Why aren't locked pages counted into the working set size?

The purpose of the VirtualLock WinAPI call is to lock pages into the working set of a process. However, the WorkingSet64 API inexplicably doesn't count those pages. Possibly as a result of this, ...
3
votes
2answers
403 views

Shared library load address under Linux

I have a major doubt regarding the shared library. What I studied is that the virtual address of a library that will be shared by different processes will be same for all these processes. But I tried ...
3
votes
5answers
331 views

How to get the amount of virtual memory available in C++?

I would like to map a file into memory using mmap function and would like to know if the amount of virtual memory on the current platform is sufficient to map a huge file. For a 32 system I cannot map ...
3
votes
1answer
2k views

Difference between sequential write and random write

What is the difference between sequential write and random write in case of :- 1)Disk based systems 2)SSD [Flash Device ] based systems When the application writes something and the information/data ...
3
votes
2answers
537 views

What are the exact conditions based on which Linux swaps process(s) memory from RAM to a swap file?

My server has 8Gigs of RAM and 8Gigs configured for swap file. I have memory intensive apps running. These apps have peak loads during which we find swap usage increase. Approximately 1 GIG of swap is ...
3
votes
3answers
1k 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/gpm 08056000-08058000 ...
3
votes
2answers
4k 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 x 5 x 7 4 ...
2
votes
2answers
48 views

How to tell Linux that a mmap()'d page does not need to be written to swap if the backing physical page is needed?

Hopefully the title is clear. I have a chunk of memory obtained via mmap(). After some time, I have concluded that I no longer need the data within this range. I still wish to keep this range, ...
2
votes
2answers
63 views

I need Virtual Memory usage in Win32 sample

I need little simple application for working with virtual memory in WIN32. Something like in Jeffrey Richter. Maybe anyone can share with me useful links? (for example working with big arrays) Google ...
2
votes
0answers
55 views

Unexpected page handling (also, VirtualLock = no op?)

This morning I stumbled across a surprising number of page faults where I did not expect them. Yes, I probably should not worry, but it still strikes me odd, because in my understanding they should ...
2
votes
4answers
100 views

Is Virtual memory really useful all the time?

Virtual memory is a good concept currently used by modern operating systems. But I was stuck answering a question and was not sure enough about it. Here is the question: Suppose there are only a ...
2
votes
1answer
203 views

linux kernel, userspace buffers, do access_ok and wait create a race condition?

In the following code (the read implementation for a char driver), is it possible for MMU TLB entries to change during wait_event_interruptible, such that __put_user causes an exception even though ...
2
votes
2answers
77 views

Is the virtual address 0x1FE0C0 below the “line” or above the line?

I'm studying z/OS and I was asked if the virtual address 0x1FE0C0 is: A. above the line. B. above the bar and below the line. C. above the line and below the bar. D. below the bar. I choose D as ...
2
votes
2answers
80 views

Memory session used to store immediate strings, in C

In the virtual memory concept, where does C compilers store immediate strings? Example: char *str = "Immediate string";
2
votes
1answer
172 views

First Step in Understanding Paged Virtual Memory: Creating Page Table Entry upon Initial Page Fault

I am trying to understand virtual memory paging. I have the following code snippet that represents the first step in the process. Here search_tbl is called from the main program for each logical ...
2
votes
2answers
320 views

Why stack address goes in decreasing memory address?

Read in text books that stack grows by decreasing memory address, that is from higher address to lower address. May be a bad question, but i didnt get the concept right.
2
votes
2answers
201 views

Is I/O with section object(CreateFileMapping) faster than basic apis(Read/WriteFile)?

CreateFileMapping and MapViewOfFile, and then we do I/O with a function like memcpy. Just use Read/WriteFile. Is the first one faster than second? I don't understand that. Why is it faster? If we ...
2
votes
2answers
50 views

How do you empty a cache when we you measure function's performance

CPU cache always interrupts what we test a performance of some codes. gettime(); func1(); gettime(); gettime(); func2(); gettime(); // func2 is faster because of the cache.(or page faults of ...
2
votes
2answers
485 views

Interaction of fork and user-space memory mapped in the kernel

Consider a Linux driver that uses get_user_pages (or get_page) to map pages from the calling process. The physical address of the pages are then passed to a hardware device. Both the process and the ...
2
votes
3answers
249 views

Experts - GCC and ld linker : re-initialization of variables contained in .data section?

In an C program, I need to re-initialize all global variables as they where when the program starts for tests purpose. I want to reproduce the data copy from Load Memory Address, LMA to VMA (run-time ...

1 2 3