Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
13
Task/Metered-concurrency/Racket/metered-concurrency.rkt
Normal file
13
Task/Metered-concurrency/Racket/metered-concurrency.rkt
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#lang racket
|
||||
|
||||
(define sema (make-semaphore 4)) ; allow 4 concurrent jobs
|
||||
|
||||
;; start 20 jobs and wait for all of them to end
|
||||
(for-each
|
||||
thread-wait
|
||||
(for/list ([i 20])
|
||||
(thread (λ() (semaphore-wait sema)
|
||||
(printf "Job #~a acquired semaphore\n" i)
|
||||
(sleep 2)
|
||||
(printf "Job #~a done\n" i)
|
||||
(semaphore-post sema)))))
|
||||
Loading…
Add table
Add a link
Reference in a new issue