io.sockets.unix: Needs to still use namespaces. Clean up using lists.
parent
42f4dc36b2
commit
1da8666a70
|
@ -2,14 +2,13 @@
|
||||||
! Daniel Ehrenberg.
|
! Daniel Ehrenberg.
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: accessors alien.c-types alien.data alien.strings arrays
|
USING: accessors alien.c-types alien.data alien.strings arrays
|
||||||
assocs byte-arrays classes classes.struct combinators
|
byte-arrays classes classes.struct combinators
|
||||||
combinators.short-circuit continuations destructors fry generic
|
combinators.short-circuit continuations destructors fry
|
||||||
grouping init io.backend io.binary io.encodings
|
grouping init io.backend io.binary io.encodings.ascii
|
||||||
io.encodings.ascii io.encodings.binary io.pathnames io.ports
|
io.encodings.binary io.pathnames io.ports io.streams.duplex
|
||||||
io.streams.duplex kernel libc locals math math.parser memoize
|
kernel locals math math.parser memoize namespaces present
|
||||||
namespaces parser present sequences splitting strings summary
|
sequences sequences.private splitting strings summary system
|
||||||
system vocabs.loader vocabs.parser vocabs
|
vocabs vocabs.parser ;
|
||||||
sequences.private ;
|
|
||||||
IN: io.sockets
|
IN: io.sockets
|
||||||
|
|
||||||
<< {
|
<< {
|
||||||
|
|
|
@ -1,12 +1,9 @@
|
||||||
! Copyright (C) 2004, 2008 Slava Pestov, Ivan Tikhonov.
|
! Copyright (C) 2004, 2008 Slava Pestov, Ivan Tikhonov.
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: accessors alien alien.c-types alien.data alien.strings
|
USING: accessors alien alien.c-types alien.data alien.strings
|
||||||
byte-arrays classes.struct combinators continuations
|
classes.struct combinators destructors io.backend.unix
|
||||||
destructors generic init io.backend io.backend.unix io.binary
|
io.encodings.utf8 io.pathnames io.sockets.private kernel libc
|
||||||
io.encodings.utf8 io.files.private io.pathnames
|
locals math namespaces sequences system unix unix.ffi vocabs ;
|
||||||
io.sockets.private io.streams.duplex kernel libc locals math
|
|
||||||
math.parser sequences system threads unix unix.ffi
|
|
||||||
vocabs ;
|
|
||||||
EXCLUDE: io => read write ;
|
EXCLUDE: io => read write ;
|
||||||
EXCLUDE: io.sockets => accept ;
|
EXCLUDE: io.sockets => accept ;
|
||||||
IN: io.sockets.unix
|
IN: io.sockets.unix
|
||||||
|
|
Loading…
Reference in New Issue