Search Results

0
votes

A way to determine a process’s “real” memory usage, i.e. private dirty RSS?

Top knows how to do this. It shows VIRT, RES and SHR by default on Debian Linux. VIRT = SWAP + RES. RES = CODE + DATA. SHR is the memory that may be shared with another process (shared library or …
1
vote

What does the “no version information available” error from linux dynamic linker mean?

The "no version information available" means that the library version number is lower on the shared object. For example, if your major.minor.patch number is 7.15.5 on the machine where you build t …
0
votes

ELF file headers

You might be able to use libmelf, a dead project on freshmeat, but available from LOPI - http://www.ipd.bth.se/ska/lopi.html …
1
vote

solaris filemerge and pstack equivalents for linux

gdb -ex bt program_file core_file should print out the stack trace of the core file. As for filemrege, there's a bunch of open source stuff: tkdiff meld mgdiff kdiff3 …
2
votes

What is the underlying transport for D-Bus?

Apparently, IPC or TCP/IP: http://www.freedesktop.org/wiki/Software/dbus Update: I mean, multiple IPC met …
1
vote

why do we need zone_highmem on x86?

Look Here: http://www.xml.com/ldd/chapter/book/ch13.html Kernel low memory is the 'real' memory map, addressed wi …
5
votes

can we modify the int 0x80 routine

UPDATE: 1. the 0x80 handler is essentially the same between 2.4 and 2.6, although the function called from the handler is called by the 'syscall' instruction handler for x86-64 in 2.6. 2. the 0 …
4
votes

How can a Perl script know its own memory footprint?

This will show you how: http://perldoc.perl.org/Devel/Peek.html Also, …
2
votes

How do I programatically disable hardware prefetching?

From the Intel reference: This instruction must be executed at privilege level 0 or in real-address mode; otherwise, a general protection exception #GP(0) will be generated. Specifying a reserv …