factor/extra/concurrency/conditions/conditions.factor

14 lines
432 B
Factor
Raw Normal View History

! Copyright (C) 2008 Slava Pestov.
2008-02-18 10:08:59 -05:00
! See http://factorcode.org/license.txt for BSD license.
USING: dlists threads kernel arrays sequences ;
IN: concurrency.conditions
: notify-1 ( dlist -- )
dup dlist-empty? [ drop ] [ pop-back second resume ] if ;
2008-02-18 10:08:59 -05:00
: notify-all ( dlist -- )
[ second resume ] dlist-slurp yield ;
: wait ( queue timeout status -- )
>r [ 2array swap push-front ] r> suspend 3drop ; inline