Thank you for subscribing to the linux-bangalore-programming mailing list. This message is to give you some information about this list and other lists we...
linux-bangalore-progr...
linux-bangalore-progr...
Jun 1, 2005 1:18 pm
6685
Hi, I have a complex html file from which I need to extract data. Can any one suggest how this data extraction can be done?? Is there any tool that converts...
... tidy and nekohtml are two that I know, they can give you xhtml for a html...
F Lace
flace9@...
Jun 2, 2005 4:43 pm
6688
Friends, I know there is no way of getting type of a variable in C. But if debugging is enabled then this information is stored in executable. Would be...
Saifuddin
saif@...
Jun 3, 2005 11:32 am
6689
... How are you looking to access this information? Do you mean while you are actually debugging? If so, there is a ptype command; Regards, Kiran Kumar Immidi ...
Hello Mr. Bharath ... Can any ... It depends on what type of data are you talkin about. Is the data mostly in tables? I am not aware of any tools, but this is...
... Using gdb to run your executable : ptype <variable_name> will give you the variable type. Raseel. Thanks Raseel Bhagat [Non-text portions of this message...
This is a reminder to members of this list about the posting rules: 1. Do not top-post 2. Do not over-quote 3. Do not post HTML messages 4. Do not recycle...
linux-bangalore-progr...
linux-bangalore-progr...
Jun 5, 2005 12:41 pm
6694
Hello All :), Does application written for 32-bit OS/CPU can actually run without any issues in 64-bit OS/CPU ?? Like, the application is written in 32-bit...
... And if you want to access this inside your program you need to dig through the DWARF debugging information embedded in your program. That's definitely not...
... Depends on the OS, but in most cases (AMD64, PowerPC64, Sparc64) yes. On Itanium 32-bit x86 applications run slower because the instructions need to be...
... Hi Bharath, I used HTML Parser in Perl, Its very easy, U can go through that from cpan.org module docs and Friend Suggested another Great tool which made...
... As ganesh pointed out I want to access it inside my program. It is all present in the .debug section of the obj. But I dont know if there is any direct way...
Saifuddin
saif@...
Jun 6, 2005 5:00 am
6699
... No. Debug information is irrelevant as far as the process context is concerned. It's not even loaded into memory. ... See if libcwd helps...
... Try using libbfd. It is part of binutils and provides portable front end to handle various object file formats. If you have a standalone application, try...
... Yes. ( Have come across very few cases where it was not possible ) ... Code is not 64 bit clean. Enable "all warnings" in gcc/g++ while compiling....
Hi, I need to calculate the processing time between 2 applications in microseconds. If there any API which returns the time in microseconds. Thanks naveen...
Hi, ... You can calculate the time taken by a process using the command "time" as shown below... $>time echo "Hello World! "; Hello World! real 0m0.000s ...
Praveen P.V
praveen.v.nair@...
Jun 7, 2005 9:27 am
6705
... Hi Naveen, there is a struct timespec which can give you a granularity in seconds and nano-seconds. You have to include <linux/time.h> Take a look at this...
... It depends. - Itanium emulates 32bit instructions. This will have performance problem coz of emulation. Itanium has complete different set of instructions....
... To access variables you need to compile Binary with debug enabled. Once you compile in debug mode, it will create seperate sections inside binary itself to...
Hi all :), I have a code snippet for which i need some explanation..... #include<iostream> #include<sys/ipc.h> #include<sys/shm.h> #include<sys/types.h> using...
... Formula is absolutely correct!! The macros that u c are the hard limits set in OS. Your execution results show that u have already allocated 4 GB of shared...
Saifuddin
saif@...
Jun 10, 2005 4:35 am
6710
Hello guys, iam working on a porting project i.e . iam porting the application from solaris to linux iam using Red hat Enterpise version 3.0. In the...
Hello, I would like to get the current colour of the text and background of shell in a c program. I know to change the colour of text and background. some...
Hi Shiju, You may have worked this out by now..if not, i guess this is the way to do it: In gcc 3.x versions this feature seems to have been deprecated. (i...
Hello, I am new to Linux device drivers. I am using Linux kernel version 2.6.8 I need to allocate some physical memory in the driver (kmalloc/get_free_pages)...