]> gitweb.factorcode.org Git - factor.git/commitdiff
io.sockets.unix: Needs to still use namespaces. Clean up using lists.
authorDoug Coleman <doug.coleman@gmail.com>
Thu, 19 Jul 2012 07:53:09 +0000 (00:53 -0700)
committerDoug Coleman <doug.coleman@gmail.com>
Thu, 19 Jul 2012 07:53:09 +0000 (00:53 -0700)
basis/io/sockets/sockets.factor
basis/io/sockets/unix/unix.factor

index d9d633026b851bb4b2b3bbe72aa5c9c9a04bf153..55eff0677ebdcbcd60bb29f3c1b59fc6107a8700 100644 (file)
@@ -2,14 +2,13 @@
 ! Daniel Ehrenberg.
 ! See http://factorcode.org/license.txt for BSD license.
 USING: accessors alien.c-types alien.data alien.strings arrays
-assocs byte-arrays classes classes.struct combinators
-combinators.short-circuit continuations destructors fry generic
-grouping init io.backend io.binary io.encodings
-io.encodings.ascii io.encodings.binary io.pathnames io.ports
-io.streams.duplex kernel libc locals math math.parser memoize
-namespaces parser present sequences splitting strings summary
-system vocabs.loader vocabs.parser vocabs
-sequences.private ;
+byte-arrays classes classes.struct combinators
+combinators.short-circuit continuations destructors fry
+grouping init io.backend io.binary io.encodings.ascii
+io.encodings.binary io.pathnames io.ports io.streams.duplex
+kernel locals math math.parser memoize namespaces present
+sequences sequences.private splitting strings summary system
+vocabs vocabs.parser ;
 IN: io.sockets
 
 << {
index a79a741b578e304851186b2094f0f440c3079aa1..88af95c30969e60ed56a1f70a99cb13a0a6431d8 100644 (file)
@@ -1,12 +1,9 @@
 ! Copyright (C) 2004, 2008 Slava Pestov, Ivan Tikhonov. 
 ! See http://factorcode.org/license.txt for BSD license.
 USING: accessors alien alien.c-types alien.data alien.strings
-byte-arrays classes.struct combinators continuations
-destructors generic init io.backend io.backend.unix io.binary
-io.encodings.utf8 io.files.private io.pathnames
-io.sockets.private io.streams.duplex kernel libc locals math
-math.parser sequences system threads unix unix.ffi
-vocabs ;
+classes.struct combinators destructors io.backend.unix
+io.encodings.utf8 io.pathnames io.sockets.private kernel libc
+locals math namespaces sequences system unix unix.ffi vocabs ;
 EXCLUDE: io => read write ;
 EXCLUDE: io.sockets => accept ;
 IN: io.sockets.unix