Merge branch 'master' of git://factorcode.org/git/factor

db4
Doug Coleman 2009-11-22 18:23:12 -06:00
commit 6af0482e4f
1 changed files with 3 additions and 2 deletions

View File

@ -3,7 +3,7 @@ USING: io.files io.files.temp io.directories io.pathnames
tools.test io.launcher arrays io namespaces continuations math
io.encodings.binary io.encodings.ascii accessors kernel
sequences io.encodings.utf8 destructors io.streams.duplex locals
concurrency.promises threads unix.process ;
concurrency.promises threads unix.process calendar ;
[ ] [
[ "launcher-test-1" temp-file delete-file ] ignore-errors
@ -128,12 +128,13 @@ concurrency.promises threads unix.process ;
[let
<promise> :> p
<promise> :> s
[
"sleep 1000" run-detached
[ p fulfill ] [ wait-for-process s fulfill ] bi
] in-thread
p ?promise handle>> 9 kill drop
p 1 seconds ?promise-timeout handle>> 9 kill drop
s ?promise 0 =
]
] unit-test