in reply to Re: Re: a problem with a filehandle reference
in thread a problem with a filehandle reference

Without experimenting, you may need to do things like
local *FH = \$this->{FL}; flock FH, LOCK_EX;
or
flock { $this->{FL} }, LOCK_EX;
You have the same types of problems when trying to print on a handle stored in a hash.