typo
This commit is contained in:
parent
2df72d14b6
commit
9c35871c28
1 changed files with 2 additions and 2 deletions
|
@ -51,13 +51,13 @@ I had only been using that TChan because I wanted a way to block while the
|
||||||
queue was empty. But now that I'm more comfortable with STM, I know how
|
queue was empty. But now that I'm more comfortable with STM, I know how
|
||||||
to do that easily using a list:
|
to do that easily using a list:
|
||||||
|
|
||||||
[[!format haskell ""
|
[[!format haskell """
|
||||||
getQueuedTransfer q = atomically $ do
|
getQueuedTransfer q = atomically $ do
|
||||||
sz <- readTVar (queuesize q)
|
sz <- readTVar (queuesize q)
|
||||||
if sz < 1
|
if sz < 1
|
||||||
then retry -- blocks until size changes
|
then retry -- blocks until size changes
|
||||||
else ...
|
else ...
|
||||||
""]]
|
"""]]
|
||||||
|
|
||||||
Ah, the times before [STM](http://en.wikipedia.org/wiki/Software_transactional_memory)
|
Ah, the times before [STM](http://en.wikipedia.org/wiki/Software_transactional_memory)
|
||||||
were dark times indeed. I'm writing more and more STM code lately, building
|
were dark times indeed. I'm writing more and more STM code lately, building
|
||||||
|
|
Loading…
Add table
Reference in a new issue