Search the web
Sign In
New User? Sign Up
linux-bangalore-programming · LB Programming Discussions
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 6684 - 6713 of 7584   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6684
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...
Send Email
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...
Raghunathan, Bharath
rbharath24
Offline Send Email
Jun 2, 2005
2:31 pm
6686
... Does the HTML file have proper structure? If so, you can use any HTML parser. Swaroop C H Blog: http://www.swaroopch.info Book:...
Swaroop C H
g2swaroop
Offline Send Email
Jun 2, 2005
4:39 pm
6687
... tidy and nekohtml are two that I know, they can give you xhtml for a html...
F Lace
flace9@...
Send Email
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@...
Send Email
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 ...
Kiran Kumar Immidi
immidi_kiran
Offline Send Email
Jun 3, 2005
12:32 pm
6690
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...
lalit_zeus
Offline Send Email
Jun 3, 2005
5:04 pm
6691
... 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...
Raseel Bhagat
raseelbhagat
Offline Send Email
Jun 3, 2005
5:04 pm
6692
... [Non-text portions of this message have been removed]...
Sudhanshu Goswami
sudhanshu_go...
Offline Send Email
Jun 4, 2005
6:03 am
6693
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...
Send Email
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...
ramprasad_i82
Offline Send Email
Jun 5, 2005
12:56 pm
6695
... 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...
Ganesan Rajagopal
nasenagr
Offline Send Email
Jun 5, 2005
3:17 pm
6696
... 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...
Ganesan Rajagopal
nasenagr
Offline Send Email
Jun 5, 2005
3:25 pm
6697
... 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...
vasundharb
Offline Send Email
Jun 5, 2005
5:40 pm
6698
... 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@...
Send Email
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...
Ganesan Rajagopal
nasenagr
Offline Send Email
Jun 6, 2005
5:39 am
6700
... 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...
Jaimon Jose
jjaimon
Offline Send Email
Jun 6, 2005
8:19 am
6701
... 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....
Jaimon Jose
jjaimon
Offline Send Email
Jun 6, 2005
8:22 am
6702
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...
Hegde Naveenachandra-...
naveenahegde@...
Send Email
Jun 7, 2005
8:02 am
6703
... gettimeofday returns timeval struct timeval { time_t tv_sec; /* seconds */ suseconds_t tv_usec; /* microseconds */ };...
Jaimon Jose
jjaimon
Offline Send Email
Jun 7, 2005
8:21 am
6704
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@...
Send Email
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...
Raseel Bhagat
raseelbhagat
Offline Send Email
Jun 8, 2005
3:47 am
6706
... It depends. - Itanium emulates 32bit instructions. This will have performance problem coz of emulation. Itanium has complete different set of instructions....
Int3
xint3
Offline Send Email
Jun 8, 2005
7:48 am
6707
... 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...
Int3
xint3
Offline Send Email
Jun 8, 2005
7:49 am
6708
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...
ramprasad_i82
Offline Send Email
Jun 9, 2005
7:33 pm
6709
... 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@...
Send Email
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...
shiju_krishnan
Offline Send Email
Jun 11, 2005
7:46 am
6711
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...
com bio
combiofriends
Offline Send Email
Jun 14, 2005
7:25 am
6712
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...
hariharan
rhariharan7
Offline Send Email
Jun 16, 2005
5:13 am
6713
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)...
lov2lin
Offline Send Email
Jun 17, 2005
10:07 am
Messages 6684 - 6713 of 7584   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help