Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re^3: How do I make the garbage collector throw an exception when it fails to auto-close a filehandle?

by BrowserUk (Patriarch)
on Jan 14, 2007 at 00:01 UTC ( [id://594580]=note: print w/replies, xml ) Need Help??


in reply to Re^2: How do I make the garbage collector throw an exception when it fails to auto-close a filehandle?
in thread How do I make the garbage collector throw an exception when it fails to auto-close a filehandle?

Won't the /dev/full device fail when you try to write to it long before you get to close it?


Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
  • Comment on Re^3: How do I make the garbage collector throw an exception when it fails to auto-close a filehandle?

Replies are listed 'Best First'.
Re^4: How do I make the garbage collector throw an exception when it fails to auto-close a filehandle?
by Aristotle (Chancellor) on Jan 14, 2007 at 01:32 UTC

    No…

    $ perl -MFatal=open,close,syswrite
    -e'open $fh,">/dev/full"; syswrite $fh, 1; close $fh'
    Can't syswrite(GLOB(0x8130c24), 1): No space left on device at (eval 3) line 3
    	main::__ANON__('GLOB(0x8130c24)') called at -e line 1
    $ perl -MFatal=open,close
    -e'open $fh,">/dev/full"; print { $fh } 1 or die "$!\n"; close $fh'
    Can't close(GLOB(0x8130c24)): No space left on device at (eval 2) line 3
    	main::__ANON__('GLOB(0x8130c24)') called at -e line 1

    … not with buffered I/O.

    Makeshifts last the longest.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://594580]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (4)
As of 2024-04-23 18:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found