Fix WITH-LOCK: The previous version called RELEASE-LOCK in the before
thunk. Noted by Taylor Campbell.
This commit is contained in:
parent
05e38a42da
commit
52ac78e0aa
1
RELEASE
1
RELEASE
|
@ -207,6 +207,7 @@ We manage the project using SourceForge:
|
||||||
expressions and is therefore no longer supported.
|
expressions and is therefore no longer supported.
|
||||||
|
|
||||||
** Bug fixes
|
** Bug fixes
|
||||||
|
Fix WITH-LOCk
|
||||||
Ensure that the exit value is 1 if scsh exits due to an error
|
Ensure that the exit value is 1 if scsh exits due to an error
|
||||||
Load the package scheme-with-scsh before dumping images to get
|
Load the package scheme-with-scsh before dumping images to get
|
||||||
better start-up times
|
better start-up times
|
||||||
|
|
3
Thanks
3
Thanks
|
@ -28,4 +28,5 @@ Post-0.5.2-release bug reports:
|
||||||
Peter Wang
|
Peter Wang
|
||||||
Stephen Ma
|
Stephen Ma
|
||||||
stktrc
|
stktrc
|
||||||
Jan Alleman
|
Jan Alleman
|
||||||
|
Taylor Campbell
|
|
@ -132,7 +132,7 @@
|
||||||
(define (with-lock lock thunk)
|
(define (with-lock lock thunk)
|
||||||
(dynamic-wind
|
(dynamic-wind
|
||||||
(lambda ()
|
(lambda ()
|
||||||
(release-lock lock))
|
(obtain-lock lock))
|
||||||
thunk
|
thunk
|
||||||
(lambda ()
|
(lambda ()
|
||||||
(release-lock lock))))
|
(release-lock lock))))
|
||||||
|
|
Loading…
Reference in New Issue