]> gitweb.factorcode.org Git - factor.git/blob - basis/unix/getfsstat/macosx/macosx.factor
fe39f8556b8131228a8e72a21cc09f8f0e339a4e
[factor.git] / basis / unix / getfsstat / macosx / macosx.factor
1 ! Copyright (C) 2008 Doug Coleman.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: alien.syntax ;
4 IN: unix.getfsstat.macosx
5
6 : MNT_WAIT    1   ; inline ! synchronously wait for I/O to complete
7 : MNT_NOWAIT  2   ; inline ! start all I/O, but do not wait for it
8
9 FUNCTION: int getfsstat64 ( statfs* buf, int bufsize, int flags ) ;