Slava Pestov 2009-04-06 05:22:43 -05:00
parent 890553b776
commit cb9e4a4069
3 changed files with 0 additions and 33 deletions

View File

@ -1,17 +0,0 @@
! Copyright (C) 2009 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license.
USING: alien threads ;
IN: tools.deploy.test.14
: (callback-yield-test) ( -- )
"void" { } "cdecl" [ yield ] alien-callback
"void" { } "cdecl" alien-indirect ;
: callback-yield-test ( -- )
"void" { } "cdecl" [
(callback-yield-test)
] alien-callback
"void" { } "cdecl" alien-indirect ;
MAIN: callback-yield-test

View File

@ -1 +0,0 @@
Slava Pestov

View File

@ -1,15 +0,0 @@
USING: tools.deploy.config ;
H{
{ deploy-name "tools.deploy.test.14" }
{ deploy-threads? t }
{ deploy-math? f }
{ deploy-word-props? f }
{ deploy-ui? f }
{ deploy-io 1 }
{ deploy-compiler? t }
{ deploy-reflection 1 }
{ "stop-after-last-window?" t }
{ deploy-unicode? f }
{ deploy-word-defs? f }
{ deploy-c-types? f }
}