diff --git a/perl/examples/create_disk.pl b/perl/examples/create_disk.pl index 49538a5fc..fa15bc7b3 100755 --- a/perl/examples/create_disk.pl +++ b/perl/examples/create_disk.pl @@ -57,4 +57,7 @@ $g->mkdir ("/foo"); # the disk image. $g->upload ("/etc/resolv.conf", "/foo/resolv.conf"); -exit 0 +# Note also that handles are automatically closed if they are +# reaped by reference counting. You only need to call close +# if you want to close the handle right away. +$g->close (); diff --git a/python/examples/create_disk.py b/python/examples/create_disk.py index bf47c916f..0885383e4 100644 --- a/python/examples/create_disk.py +++ b/python/examples/create_disk.py @@ -51,4 +51,7 @@ g.mkdir ("/foo") # the disk image. g.upload ("/etc/resolv.conf", "/foo/resolv.conf") +# Note also that handles are automatically closed if they are +# reaped by reference counting. You only need to call close +# if you want to close the handle right away. g.close () diff --git a/ruby/examples/create_disk.rb b/ruby/examples/create_disk.rb index 4e42cf6aa..026ea2e70 100644 --- a/ruby/examples/create_disk.rb +++ b/ruby/examples/create_disk.rb @@ -54,4 +54,7 @@ g.mkdir("/foo") # the disk image. g.upload("/etc/resolv.conf", "/foo/resolv.conf") +# Note also that handles are automatically closed if they are +# reaped by the garbage collector. You only need to call close +# if you want to close the handle right away. g.close()