You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
lock_fh uses fcntl on *nix systems, which is reentrant in the sense that if a process tries to lock a file it has already locked, the lock is a no-op (and a call to 'unlock' (or closing a file) will remove all locks the current process holds on a file)
On Windows sytems, lock_fh uses LockFileEx, which will block if the same process attempts to lock a file twice.
The text was updated successfully, but these errors were encountered:
lock_fh uses fcntl on *nix systems, which is reentrant in the sense that if a process tries to lock a file it has already locked, the lock is a no-op (and a call to 'unlock' (or closing a file) will remove all locks the current process holds on a file)
On Windows sytems, lock_fh uses LockFileEx, which will block if the same process attempts to lock a file twice.
The text was updated successfully, but these errors were encountered: