2008-12-02 20:18:48 -05:00
|
|
|
! Copyright (C) 2008 Doug Coleman.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2009-09-27 00:14:57 -04:00
|
|
|
USING: alien.c-types alien.syntax unix.statfs.macosx ;
|
2008-12-02 20:18:48 -05:00
|
|
|
IN: unix.getfsstat.macosx
|
|
|
|
|
2008-12-16 02:12:36 -05:00
|
|
|
CONSTANT: MNT_WAIT 1 ! synchronously wait for I/O to complete
|
|
|
|
CONSTANT: MNT_NOWAIT 2 ! start all I/O, but do not wait for it
|
2008-12-02 20:18:48 -05:00
|
|
|
|
2015-07-19 19:25:30 -04:00
|
|
|
FUNCTION: int getfsstat64 ( statfs64* buf, int bufsize, int flags )
|