2008-02-18 10:08:59 -05:00
|
|
|
! Copyright (C) 2008 Slava Pestov.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2008-02-18 17:20:18 -05:00
|
|
|
USING: dlists kernel threads math concurrency.conditions
|
|
|
|
continuations ;
|
2008-02-18 06:07:40 -05:00
|
|
|
IN: concurrency.semaphores
|
|
|
|
|
|
|
|
TUPLE: semaphore count threads ;
|
|
|
|
|
2008-02-18 17:20:18 -05:00
|
|
|
: <semaphore> ( n -- semaphore )
|
|
|
|
dup 0 < [ "Cannot have semaphore with negative count" throw ] when
|
2008-02-19 12:37:02 -05:00
|
|
|
<dlist> semaphore construct-boa ;
|
2008-02-18 06:07:40 -05:00
|
|
|
|
2008-02-18 17:20:18 -05:00
|
|
|
: wait-to-acquire ( semaphore timeout -- )
|
2008-02-19 15:38:02 -05:00
|
|
|
>r semaphore-threads r> "semaphore" wait ;
|
2008-02-18 06:07:40 -05:00
|
|
|
|
2008-02-22 00:47:06 -05:00
|
|
|
: acquire-timeout ( semaphore timeout -- )
|
|
|
|
over semaphore-count zero?
|
|
|
|
[ dupd wait-to-acquire ] [ drop ] if
|
|
|
|
dup semaphore-count 1- swap set-semaphore-count ;
|
|
|
|
|
|
|
|
: acquire ( semaphore -- )
|
|
|
|
f acquire-timeout ;
|
2008-02-18 06:07:40 -05:00
|
|
|
|
|
|
|
: release ( semaphore -- )
|
|
|
|
dup semaphore-count 1+ over set-semaphore-count
|
|
|
|
semaphore-threads notify-1 ;
|
2008-02-18 17:20:18 -05:00
|
|
|
|
2008-02-22 00:47:06 -05:00
|
|
|
: with-semaphore-timeout ( semaphore timeout quot -- )
|
|
|
|
pick rot acquire-timeout swap
|
|
|
|
[ release ] curry [ ] cleanup ; inline
|
|
|
|
|
2008-02-18 17:20:18 -05:00
|
|
|
: with-semaphore ( semaphore quot -- )
|
2008-02-22 00:47:06 -05:00
|
|
|
over acquire swap [ release ] curry [ ] cleanup ; inline
|