in reply to 2 problems using sockets perl 5.8 and mod_perl2 on Linux
Hello,I don't think you understood what sgifford said. When $nf is 1, there is no error. This is exactly what should be expected. You only look at $! to see what the error is after there is an error. The perl variable $! and the related C variable errno do not get reset to 0 when there is a successfull call. They will hold the previous error value until another error happens or the program specificly sets them. The moral is: Don't look at $! to see if there has been an error. Only look at it to see what error occurred after something else indicates that there has indeed been an error.I checked and $nf is set to 1 on my machine. Odd.
I also added code to count the number of times this occurs and it happens thousands of times.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: 2 problems using sockets perl 5.8 and mod_perl2 on Linux
by rr (Sexton) on Jul 01, 2003 at 14:02 UTC | |
by Thelonius (Priest) on Jul 03, 2003 at 03:05 UTC |