]> gitweb.factorcode.org Git - factor.git/blob - extra/io/launcher/launcher.factor
Initial import
[factor.git] / extra / io / launcher / launcher.factor
1 ! Copyright (C) 2007 Slava Pestov.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: io.backend system ;
4 IN: io.launcher
5
6 HOOK: run-process io-backend ( string -- )
7
8 HOOK: run-detached io-backend ( string -- )
9
10 HOOK: <process-stream> io-backend ( string -- stream )
11
12 USE-IF: unix? io.unix.launcher
13 USE-IF: windows? io.windows.launcher