strange disconnection

Posted by Taebryn on Sun 22 Feb 2004 12:48 AM — 7 posts, 21,467 views.

#0
i recently removed the process of transporting some1 to limbo if they are AFK

but sometimes, after being AFK, it now kicks with this error:

Read_from_descriptor: No such file or directory
Sat Feb 21 17:48:19 2004 :: Closing link to Test.

any ideas?
Canada #1
Do a grep on that message, see where its coming from. You can then trace that function backwards with GDB.
#2
sorry im new to this stuff
whats a grep
Canada #3
grep is a command that you use in your shell that looks through the files you specify for a string that you enter. Try:
Quote:
grep "Read_from_descriptor" *.c
Enter that in your /src, and it should show you were that might have come from. You can then check your code, and see how that might be relevent to your change.
Amended on Sun 22 Feb 2004 04:43 AM by Greven
#4
this is win32 ported
:/
Canada #5
I assume your running it with cygwin, or are you using some other compiler? If its cygwin, you can still use gdb. If you want to download and install cygwin with the devel packages just for gdb, I personally thing thats work it.

The problem is PROBABLY in comm.c, look for " perror( Read_from_descriptor) "
Australia Forum Administrator #6
If you are using Win32, and are not familiar with grep, although it doesn't hurt to be, you can use UltraEdit and do "find in files". It amounts to a similar thing.