--- Linux-AIO/README 2005/07/10 17:11:54 1.5 +++ Linux-AIO/README 2005/07/12 10:51:09 1.6 @@ -112,8 +112,7 @@ aio_open "/etc/passwd", O_RDONLY, 0, sub { if ($_[0] >= 0) { - open my $fh, "<&$_[0]"; # create a copy for perl - aio_close $_[0], sub { }; # close the aio handle + open my $fh, "<&=$_[0]"; print "open successful, fh is $fh\n"; ... } else {