# HG changeset patch # User Claus Gittinger # Date 897180247 -7200 # Node ID b5fe623f0e4db17e720b709a1e631d81ffc8d2ff # Parent a17c19727c119bb07986d9f4a0473d489f1e26c3 warning in documentation diff -r a17c19727c11 -r b5fe623f0e4d RecursionLock.st --- a/RecursionLock.st Sun Jun 07 02:11:50 1998 +0200 +++ b/RecursionLock.st Sun Jun 07 02:44:07 1998 +0200 @@ -42,6 +42,11 @@ I.e. allows reentering the critical region IFF the current process is the one which did the original locking. + WARNING: + for now, recursionLocks are not unlocked when an image is + restarted. You may have to recreate them to avoid a deadLock. + (this may change in the future, but recreating a recursionLock in + the #earlyRestart handling does not hurt) [author:] Claus Gittinger @@ -185,5 +190,5 @@ !RecursionLock class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/RecursionLock.st,v 1.19 1998-03-06 15:27:23 stefan Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/RecursionLock.st,v 1.20 1998-06-07 00:44:07 cg Exp $' ! !