in reply to Error code 15360 on close filehandle
See system for how the error code of programs is arranged.
Your program used exit(60);. Lots of programs exit with the errno of the error as the exit code. On one of my systems, errno 60 is "Device not a stream".
$ perl -E'say $!=60' Device not a stream
Update: Added examination of error code.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Error code 15360 on close filehandle
by perlnew1611 (Initiate) on Nov 28, 2011 at 21:09 UTC | |
by ikegami (Patriarch) on Nov 29, 2011 at 04:12 UTC |