factor/basis/io/unix/pipes/pipes.factor

12 lines
370 B
Factor
Raw Normal View History

! Copyright (C) 2008 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license.
USING: system alien.c-types kernel unix math sequences
2008-05-13 19:24:46 -04:00
qualified io.unix.backend io.ports ;
IN: io.unix.pipes
QUALIFIED: io.pipes
M: unix io.pipes:(pipe) ( -- pair )
2 "int" <c-array>
dup pipe io-error
2008-07-03 18:44:44 -04:00
2 c-int-array> first2 [ <fd> init-fd ] bi@ io.pipes:pipe boa ;