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...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 6411 - 6440 of 7585   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6411
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
Mar 1, 2005
8:54 am
6412
Hi, When I tried to compile a ARM9 application in a cygwin environment under Windows 2000, I got the following error: arm-elf-gcc: installation problem, cannot...
Saravanan M K
m_k_sarav
Offline Send Email
Mar 1, 2005
9:13 am
6413
Hi, Can a process check if a given PID exists or not? To put it differently, can a process check if an unrelated process is alive? Is there any system call...
Hareesh Nagarajan
hareesh.nagarajan@...
Send Email
Mar 1, 2005
9:14 am
6414
On Tue, 1 Mar 2005 02:18:25 -0600, Hareesh Nagarajan ... I got the answer from a different ML. Use kill() with a second argument being zero. if (kill(pid, 0)...
Hareesh Nagarajan
hareesh.nagarajan@...
Send Email
Mar 1, 2005
9:14 am
6415
Dear all, Myself Vishwas, a new member of the group. I am looking for a feature in linux where i can configure an alarm, and upon its expiry an alarm-handler...
vishwas_poghul
Offline Send Email
Mar 1, 2005
7:42 pm
6416
hi, i was trying to build a table in stx where the values are all numbers. The numbers are not displaying. Wherever there is a number i just get a '1'. Any...
Kenneth Gonsalves
kengon2233
Offline Send Email
Mar 2, 2005
3:37 am
6417
... man setitimer Ganesan...
Ganesan Rajagopal
nasenagr
Offline Send Email
Mar 2, 2005
4:07 am
6418
... tried escaping the number with a '\'. Number appears but the backslash also appears. Also whenever any element in stx starts with a number, the same...
Kenneth Gonsalves
kengon2233
Offline Send Email
Mar 2, 2005
6:33 am
6419
From http://www.xfce.org: " The Xfce Foundation Classes [1] website and first development release are now online. To quote the author, Jeff Franks: "The Xfce...
Biju Chacko
Biju_Chacko
Offline Send Email
Mar 3, 2005
5:36 am
6420
hi, why dont u try qtimer (qt timer).... its easy to use and gives resolution in millisecs. cheers, Sridhar...
sridhar_kutti
Online Now Send Email
Mar 3, 2005
5:58 am
6421
Hi, I haven't figured out how I must fsync an output stream even after reading the contents of this link: http://gcc.gnu.org/ml/gcc-help/2004-02/msg00285.html ...
Hareesh Nagarajan
hareesh.nagarajan@...
Send Email
Mar 3, 2005
6:36 am
6422
Hareesh, ... Any reason you are not using std::ostream::flush() call?? So, your code could be -> inline void logRecovery::syncToDisk( fstream& f ) { f.flush();...
Arun C Murthy
acmurthy
Online Now Send Email
Mar 3, 2005
7:07 am
6423
ACM! How you doing?! My reply follows inline: ... I don't think so. Yesterday I had GCC 3.3.1 on my system and it worked! Today I upgraded GCC to 3.3.4 and my...
Hareesh Nagarajan
hareesh.nagarajan@...
Send Email
Mar 3, 2005
7:55 am
6424
Hello All, I am vinay S.G. I was really impressed with the way LBG-2005 went in IISC TATA ADITORIUM. This is first time I am going with ioctl path. I am trying...
Vinay S G
sg_vinay
Offline Send Email
Mar 3, 2005
10:20 am
6425
Hello All, I am vinay S.G from Athena Semi. I am knew to this ioctl path in driver. I want to implement support for the user to use channel seting from the...
Vinay . S . G
sg_vinay
Offline Send Email
Mar 3, 2005
10:21 am
6426
... these 2 links might help. http://w3.icpdas.com/reed/cahier/ldd.shtml#T00032400 http://www.tldp.org/LDP/lkmpg/2.6/html/c878.htm HTH. cheers, Amith...
Amith
amith@...
Send Email
Mar 3, 2005
10:33 am
6427
Hi I need to know how to program in C on UNIX getting a file name of the file pointed by the link to the file. Using lstat i can get the inode information but...
Neeraj Bansal
nee_savi
Offline Send Email
Mar 3, 2005
2:00 pm
6428
Hi, ... Use readlink syscall to dereference the link. char buffer[PATH_MAX+1]; readlink("neeraj",buffer,sizeof(buffer)-1); Regards, -Karthick -- Software is...
A.R Karthick
a_r_karthic
Offline Send Email
Mar 3, 2005
5:44 pm
6429
Hi all, I am trying to create an entry in /sys file system in Linux 2.6.8 kernel.I wrote a simple character driver and tried using driver_register().But i am...
mks_76in
Offline Send Email
Mar 4, 2005
2:22 pm
6430
hi, i have made an embeded application using microcontroller AT89C52 , which is based on 8051 microcontroler, suggest me the best gnu compilers for assembly as...
hemanth G
virtualhalo
Offline Send Email
Mar 5, 2005
1:56 pm
6431
hi.. i am recently working on reg expression in linux,lex & yacc and perl.can anybody give me the syntax used for spacebar in regex rahulroot@......
Rahul Gupta
rahulgupta_itm
Offline Send Email
Mar 5, 2005
1:56 pm
6432
... The spacebar specifically isn't represented in a regex, but if you're looking for whitespace in perl, you can use \s In general, it depends on the...
Philip Tellis
philiptellis
Offline Send Email
Mar 5, 2005
3:15 pm
6433
Hi My problem is the following : I hava a sequence file with a header which will start with a '>'symbol in single line followed by sequences of 60 char...
vasundhar
vasundharb
Offline Send Email
Mar 6, 2005
1:25 pm
6434
... Is your header also 60 characters? I suspect you're not reading correctly, that's why your output is garbled. Ganesan -- Ganesan Rajagopal (rganesan at...
Ganesan Rajagopal
nasenagr
Offline Send Email
Mar 7, 2005
4:11 am
6435
... Why the .bus is empty? This gives a value of NULL to .bus ... Why %i? ... Lets try analyzing this function. driver_register is defined in...
Om
omanakuttan@...
Send Email
Mar 7, 2005
4:56 am
6436
Hello, I need some simple graphics related help/advice with Tcl/Tk. I am not sure how popular it (Tcl/Tk) is. Does anyone use it? If yes then I would post my...
sanjeev@...
qhayaal
Offline Send Email
Mar 7, 2005
5:07 am
6437
... Don't ask if you can ask, just ask. We have to read your mail any way, if we don't know what you're talking about, we just skip the mail. Mails like this ...
Ganesan Rajagopal
nasenagr
Offline Send Email
Mar 7, 2005
5:33 am
6438
... Well, Tcl, yes. Not sure about Tk though that's what you would be interested in (graphics). I think Tk is also used along with Python and various other...
arjun.thounaojam@...
Send Email
Mar 7, 2005
5:52 am
6439
... I have played around with Tcl/Tk stuff. Tk is great for rapid prototyping of GUIs and even for complete apps. If fact once you understand Tk's layout...
Moinak Ghosh
moinakg2002
Offline Send Email
Mar 7, 2005
5:52 am
6440
... generally people use something a little higher level depending on the language of their choice - perl guys use perl/tk, python would use tkinter and c guys...
Kenneth Gonsalves
kengon2233
Offline Send Email
Mar 7, 2005
6:02 am
Messages 6411 - 6440 of 7585   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