[PLUG] newbie to Plug

2005-03-10 Thread Murtuza Ali
hello, myself Murtuza i have currently joined this mailing list.. i don't know specificly what type of topics you guys discussed but these topic should have related to GNU and Open Source kind of things. i want to post a problem related to DOSEMU. basicaly i am not able to connect my dosemu to my

[PLUG] Good article on why (rather not to) recompile the kernel

2005-03-10 Thread Mayuresh
"Dispelling the Kernel Compiling Myth" http://www.linuxgazette.com/issue37/martinez.html -- __ Pune GNU/Linux Users Group Mailing List: (plug-mail@plug.org.in) List Information: http://plug.org.in/mailing-list/listinfo/plug

[PLUG] c programming help

2005-03-10 Thread Krishna Khanna
I would be glad to know regarding c programming on linux i use mandrake 10.1 and am a newbie. What i got from the net is that you write cc -o hello hello.c if the program is written on the editor and save as a '.c' file, then the object by name of hello is created and by writing ./hello (obj name)

[PLUG] autocad in linux?

2005-03-10 Thread san electronics
is there any software which can serve purpose of autocad in linux thanks in advance sachin mahajan __ Do you Yahoo!? Yahoo! Small Business - Try our new resources site! http://smallbusiness.yahoo.com/resources/ -- __

Re: [PLUG] Software for windows that opens linux drives.

2005-03-10 Thread lonetwin
Hi Anil, --- Anil Wadghule <[EMAIL PROTECTED]> wrote: > Anybody have the software that can open the linux drives in Windows. > That software must be the open source software. Like wine that can run > Windows exes > in linux, but is there that runs linux's programs? I have Mandrake > 10.1 and Windo

[PLUG] Software for windows that opens linux drives.

2005-03-10 Thread Anil Wadghule
Anybody have the software that can open the linux drives in Windows. That software must be the open source software. Like wine that can run Windows exes in linux, but is there that runs linux's programs? I have Mandrake 10.1 and Windows XP installed on my machine. -- Don't live to geek; geek to l

[PLUG] help on recv()

2005-03-10 Thread sachin sonone
Hi, Thanks for the help. pthread_cancel () will also do. But for this I have to write cleanup handlers to free the resources. The problem in my case was, I was not using shutdown(..), and adding it solved my problem, causing recv(..) to come back from the blocked state. Thanks for your suggest

Re: Re: [PLUG] help on recv()

2005-03-10 Thread Vinayak Pane
make your read/write operations O_NONBLOCK either while opening the fd or just before reading. you can do it by adding O_NONBLOCK to "open" or if the fds are already open you can use "fcnt( fd, lF_SETFL, O_NONBLOCK)" . To make your operations non-blocking. Just before you start reading the device,u