===================================================================== PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND. If you post one,...
linux-bangalore-progr...
linux-bangalore-progr...
Dec 1, 2006 7:50 pm
7289
This is a reminder to members of this list about the posting rules: If you are posting to this list, and your messages aren't appearing, check the following: ...
linux-bangalore-progr...
linux-bangalore-progr...
Dec 3, 2006 4:58 pm
7290
... Hi Kashyap, Can you let me know from where you got the /bin/update and /bin/sh utilities to run your linux 0.01 kernel. Thanks, Eric...
Hi Eric, ... I did not run "sh" on 0.01 - infact, 0.01 expected some old a.out type executable that I created using nasm and vi (yup hard coded). I ran a...
Hi All, I want to allocate more memory statically in one particular process in linux. For example: I want that my that service will use 2GB of memory. How I...
I have code that was written for gpgme-0.3, and I now need to port the code over to gpgme-1.0. All the datastructures appear to have changed, but I've found...
Hi, I need to print the VM and RSS for a process from its command line interface. Basically the numbers I report should match what 'top' command would have...
Manu C S
manu@...
Dec 13, 2006 9:46 am
7295
... From your program read /proc/self/status and look for VmSize and VmRSS lines. You can try running "cat /proc/self/status" to get an idea. Ganesan -- ...
... I found the following link helpful in finding the source: <http://metalab.unc.edu/pub/Linux>http://linuxgazette.net/issue54/tag/13.html _,_._,___ I'm still...
Manu C S
manu@...
Dec 14, 2006 8:30 am
7297
Hello All, I am using RHEL ia64 version. I need to get information regarding compiler name and options which was used while building an binary. I have tried...
... Hello All, Even with the debug symbols, readelf only print the information regarding Compiler Name. It doesn't show any compiler options. Thanks, Prakash.A...
... There is no way to get this information directly. Based on some code generation quirks it may be possible to heuristically determine this, but I guess...
This is a reminder to members of this list about the posting rules: If you are posting to this list, and your messages aren't appearing, check the following: ...
linux-bangalore-progr...
linux-bangalore-progr...
Dec 17, 2006 4:49 pm
7301
... For dwarf2 debugging format, the defines and undefines at commandline are in macinfo section. But other compiler options are missing. ~Gitesh...
Gitesh Kulkarni
gitesh.kulkarni@...
Dec 18, 2006 7:10 am
7302
... Note that that current version of GCC in SVN (to be released as GCC 4.3) has a "-frecord-gcc-switches" option that will provide you this information: ...
Hi Is it possible to debug assembly code through gdb . if yes how to do it Could you please help me in this regards Thanks Pushparaj.M Send free SMS to your...
... Yes you can do that. It is very similar to source level debugging. Refer - http://web.cecs.pdx.edu/~bjorn/CS200/linux_tutorial/ ...
Gitesh Kulkarni
gitesh.kulkarni@...
Dec 26, 2006 10:13 am
7305
Hi, where i can get latest GCOV,LCOV patches for linux kernel-2.6.19 or later. it is available upto linux-2.6.16 only in ltp.sourceforge.net site. regards ...
Hi Get stuck up while debugging the kernel source code 2.4 by using gdb debugger After reaching setsetup_processor () at setup.c . while(1); is there inside...
This is a reminder to members of this list about the posting rules: If you are posting to this list, and your messages aren't appearing, check the following: ...
linux-bangalore-progr...
linux-bangalore-progr...
Dec 31, 2006 8:52 pm
7308
===================================================================== PLEASE NOTE THAT THIS LIST DOES NOT ALLOW JOB POSTINGS OF *ANY* KIND. If you post one,...
linux-bangalore-progr...
linux-bangalore-progr...
Jan 2, 2007 10:14 am
7309
Hello Linux Programming Mania, i wanna ask some problem in my program. now i trying to using shell program as an absence system in our company, and we need it...
Hi, I recently came across the D programming language project, and it looks pretty exciting. The below introduction is from the official D website: D is a...
Hi, I have a c++ program in which i have 4 different entities(think as virtual threads) having uniique ids (0 to 3) and I would like to open 4 different...
well when you login, or create a terminal it is identified as a device.. open up two terminals and type: who am i at the console you would see different tty...
All: Here's wishing you all a happy new year! (So I am late - sue me :) The Bangalore Linux User Group will be meeting on Monday, the 15th of January, at 5pm,...
This is a reminder to members of this list about the posting rules: If you are posting to this list, and your messages aren't appearing, check the following: ...
linux-bangalore-progr...
linux-bangalore-progr...
Jan 14, 2007 5:37 pm
7316
I have an application (package) which has around 12-14 different processes. A couple of processes run at kernel level while the rest run at application level....
... You can try using IBM's Purify (evaluation kit) to find out the process leaking the memory out. You could also use Valgrind for the same. Both the tools...