more libc fixes.
parent
e50d1375a1
commit
5e129a8964
|
@ -3,8 +3,8 @@ concurrency.promises continuations debugger.unix destructors io
|
||||||
io.backend.unix io.directories io.encodings.ascii
|
io.backend.unix io.directories io.encodings.ascii
|
||||||
io.encodings.binary io.encodings.utf8 io.files io.files.temp
|
io.encodings.binary io.encodings.utf8 io.files io.files.temp
|
||||||
io.launcher io.launcher.unix io.pathnames io.streams.duplex
|
io.launcher io.launcher.unix io.pathnames io.streams.duplex
|
||||||
io.timeouts kernel locals math namespaces sequences threads
|
io.timeouts kernel libc locals math namespaces sequences
|
||||||
tools.test unix unix.process ;
|
threads tools.test unix unix.process ;
|
||||||
IN: io.launcher.unix.tests
|
IN: io.launcher.unix.tests
|
||||||
|
|
||||||
: arch-temp-file ( str -- str' )
|
: arch-temp-file ( str -- str' )
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
! Copyright (C) 2007, 2009 Doug Coleman, Slava Pestov.
|
! Copyright (C) 2007, 2009 Doug Coleman, Slava Pestov.
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: continuations destructors io.files io.files.info
|
USING: accessors alien.c-types alien.data combinators
|
||||||
io.backend kernel quotations system alien alien.accessors
|
destructors io.backend io.files.info kernel math system vocabs ;
|
||||||
accessors vocabs combinators alien.c-types alien.data
|
|
||||||
math ;
|
|
||||||
IN: io.mmap
|
IN: io.mmap
|
||||||
|
|
||||||
TUPLE: mapped-file < disposable address handle length ;
|
TUPLE: mapped-file < disposable address handle length ;
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
! Copyright (C) 2007 Doug Coleman.
|
! Copyright (C) 2007 Doug Coleman.
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: accessors destructors io.backend.unix io.mmap literals
|
USING: accessors destructors io.backend.unix io.mmap
|
||||||
io.mmap.private kernel locals math.bitwise system unix unix.ffi ;
|
io.mmap.private kernel libc literals locals system unix
|
||||||
|
unix.ffi ;
|
||||||
IN: io.mmap.unix
|
IN: io.mmap.unix
|
||||||
|
|
||||||
:: mmap-open ( path length prot flags open-mode -- alien fd )
|
:: mmap-open ( path length prot flags open-mode -- alien fd )
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: accessors alien.c-types alien.syntax byte-arrays io
|
USING: accessors alien.c-types alien.syntax byte-arrays io
|
||||||
io.encodings.string io.encodings.utf8 io.streams.byte-array
|
io.encodings.string io.encodings.utf8 io.streams.byte-array
|
||||||
kernel sequences splitting strings system system-info unix
|
libc kernel sequences splitting strings system system-info unix
|
||||||
unix.linux.proc math ;
|
unix.linux.proc math ;
|
||||||
IN: system-info.linux
|
IN: system-info.linux
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
USING: alien alien.c-types alien.data alien.strings alien.syntax
|
USING: alien alien.c-types alien.data alien.strings alien.syntax
|
||||||
arrays assocs byte-arrays combinators core-foundation io.binary
|
arrays assocs byte-arrays combinators core-foundation io.binary
|
||||||
io.encodings.utf8 kernel math namespaces sequences system
|
io.encodings.utf8 libc kernel math namespaces sequences system
|
||||||
system-info unix ;
|
system-info unix ;
|
||||||
|
|
||||||
IN: system-info.macosx
|
IN: system-info.macosx
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
USING: calendar continuations io kernel math namespaces threads
|
USING: calendar continuations io kernel libc math namespaces
|
||||||
tools.test unix.ffi unix.process unix.signals ;
|
threads tools.test unix.ffi unix.process unix.signals ;
|
||||||
IN: unix.signals.tests
|
IN: unix.signals.tests
|
||||||
|
|
||||||
SYMBOL: sigusr1-count
|
SYMBOL: sigusr1-count
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
! Copyright (C) 2009 Slava Pestov.
|
! Copyright (C) 2009 Slava Pestov.
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: io.backend.unix io.backend.unix.multiplexers
|
USING: io.backend.unix io.backend.unix.multiplexers
|
||||||
namespaces system x11 x11.xlib x11.io
|
io.files namespaces system x11 x11.xlib x11.io
|
||||||
accessors threads sequences kernel ;
|
accessors threads sequences kernel ;
|
||||||
IN: x11.io.unix
|
IN: x11.io.unix
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
! Copyright (C) 2008 Doug Coleman.
|
! Copyright (C) 2008 Doug Coleman.
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: accessors classes.struct combinators io.backend.unix
|
USING: accessors classes.struct combinators io.backend.unix
|
||||||
io.ports io.serial io.streams.duplex kernel literals math
|
io.ports io.serial io.streams.duplex kernel libc literals math
|
||||||
system unix unix.ffi io.serial.linux.ffi ;
|
system unix unix.ffi io.serial.linux.ffi ;
|
||||||
IN: io.serial.linux
|
IN: io.serial.linux
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
! Copyright (C) 2010 Doug Coleman.
|
! Copyright (C) 2010 Doug Coleman.
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: accessors calendar classes.struct kernel math system time
|
USING: accessors calendar classes.struct kernel libc math
|
||||||
unix unix.time ;
|
system time unix unix.time ;
|
||||||
IN: time.unix
|
IN: time.unix
|
||||||
|
|
||||||
: timestamp>timezone ( timestamp -- timezone )
|
: timestamp>timezone ( timestamp -- timezone )
|
||||||
|
|
Loading…
Reference in New Issue