]> git.rkrishnan.org Git - sicp.git/blob - src/sicp/ex3_49.rkt
Solution to 4.30. Extremely enlightening!
[sicp.git] / src / sicp / ex3_49.rkt
1 #lang racket
2
3 #|
4
5 Process 1 needs access to a shared resource depending on some runtime condition and needs
6 another resource depending on another condition.
7
8 Consider another similar process being executed concurrently. We cannot determine
9 the order of the resource acquisition apriori in this case.
10
11 |#