The pmap tag has no wiki summary.
12
votes
3answers
250 views
'Shared Object Memory' vs 'Heap Memory' - Java
What is difference between 'Shared Object Memory' and 'Heap Memory' in Java. Is it like 'Shared Object Memory' is superset of 'Heap Memory'?
The source of this question is documentation of jmap. It ...
5
votes
3answers
337 views
How many threads does Clojure's pmap function spawn for URL-fetching operations?
The documentation on the pmap function leaves me wondering how efficient it would be for something like fetching a collection of XML feeds over the web. I have no idea how many concurrent fetch ...
2
votes
1answer
41 views
Why do I see big differences in memory usage with pmap for the same process on 32bit and 64bit Linux?
I was setting up a new server (64bit Debian) and, in an attempt to make the apache process as small as possible, disabled any modules that I didn't need. I then compared the pmap output to apache on a ...
2
votes
1answer
71 views
Coding pmap in Solaris
I'm currently attempting to write my own program that mirrors the pmap command, specifically on Solaris 9. I'm having trouble resolving the names and paths of the libraries. Output of the Solaris ...
2
votes
1answer
391 views
how to get the memory mapping for a core on Linux/HPUX (pmap)
On solaris i can run the pmap command on a core file to get the memory map of a crashed process. Unfortunately the pmap command available on HPUX and Linux doesn't provide this option. Any pointers ...
2
votes
5answers
7k views
Trying to locate a leak! What does anon mean for pmap?
I'm trying to locate where my memory has gone for a java process running in linux. Someone suggested I use pmap -x to see exactly what the memory is doing.
The output is really long but basically a ...
1
vote
0answers
326 views
Are the pmap's RSS and htop's RES the same?
I run the following simple program
#include <stdio.h>
#include <stdlib.h>
int
main() {
malloc(1024*1024*32);
getchar();
return 0;
}
"htop" gives this
VIRT RES SHR
36684 ...
0
votes
1answer
42 views
Diagnose RSS leak in Java when heap is stable
I am using a simple test program that I run for a few hours.
public static void main(String[] args) {
for (int i=1; i<500; i++) {
run();
}
}
public static void run() {
new ...
0
votes
0answers
50 views
why doesn't pooling work sometimes for user-defined functions in Python?
While it sometimes does! Sorry for the longish pieces of code posted below, but please try to explain why does the first give me a "_pickle.PicklingError: Can't pickle : attribute lookup ...
0
votes
2answers
193 views
printed the address of printf() function and also the pmap of the code…printf()'s address shown to be a part of code seg rather than libc
In my code I tried to print the address of printf() function.
22834: ./a.out
00250000 1372K r-x-- /lib/libc-2.12.1.so
003a7000 8K r---- /lib/libc-2.12.1.so
003a9000 4K rw--- ...
0
votes
1answer
178 views
Could not understand the output of pmap properly
I wrote a simple C program for threads whose process map looks like this:
anirudh@anirudh-Aspire-5920:~/Documents/DUMP$ pmap 3232
3232: ./a.out
00148000 1372K r-x-- /lib/libc-2.12.1.so
0029f000 ...
0
votes
1answer
251 views
What is a deleted segment in linux pmap output?
Here are the first few lines of output from pmap on a process, running on CentOS 5.2:
Address Kbytes RSS Anon Locked Mode Mapping
00101000 1268 - - - r-x-- ...
0
votes
1answer
264 views
What Is The Mode Column In Pmap Output?
I would like to know what is the "mode" column in pmap output. I know it describes memory protection (like read-write-execute). But as far as I know on x86 memory pages can only be write-enabled or ...