Axel Huizinga wrote:
The following code hangs after reloading and the try to tie again the previously created session! WHY?
...
use vars qw(
       $id $sID
       $lockDir
       %session $sessionDir
       );
The session variable has to go out of scope for the lock to be released. I know it seems like the untie should do it, but try making %session a lexical instead of a global.

- Perrin



Reply via email to