2008-10-19 14:10:28 -04:00
|
|
|
USING: kernel alien.syntax math unix math.bitwise
|
|
|
|
alien.c-types alien sequences grouping accessors combinators ;
|
2008-02-27 18:01:15 -05:00
|
|
|
IN: unix.stat
|
|
|
|
|
|
|
|
! Mac OS X ppc
|
|
|
|
|
2008-10-06 23:51:06 -04:00
|
|
|
! stat64 structure
|
2008-02-27 18:01:15 -05:00
|
|
|
C-STRUCT: stat
|
|
|
|
{ "dev_t" "st_dev" }
|
|
|
|
{ "mode_t" "st_mode" }
|
|
|
|
{ "nlink_t" "st_nlink" }
|
2008-10-07 08:43:49 -04:00
|
|
|
{ "ino64_t" "st_ino" }
|
2008-02-27 18:01:15 -05:00
|
|
|
{ "uid_t" "st_uid" }
|
|
|
|
{ "gid_t" "st_gid" }
|
|
|
|
{ "dev_t" "st_rdev" }
|
|
|
|
{ "timespec" "st_atimespec" }
|
|
|
|
{ "timespec" "st_mtimespec" }
|
|
|
|
{ "timespec" "st_ctimespec" }
|
2008-10-06 23:51:06 -04:00
|
|
|
{ "timespec" "st_birthtimespec" }
|
2008-02-27 18:01:15 -05:00
|
|
|
{ "off_t" "st_size" }
|
|
|
|
{ "blkcnt_t" "st_blocks" }
|
|
|
|
{ "blksize_t" "st_blksize" }
|
|
|
|
{ "__uint32_t" "st_flags" }
|
|
|
|
{ "__uint32_t" "st_gen" }
|
|
|
|
{ "__int32_t" "st_lspare" }
|
|
|
|
{ "__int64_t" "st_qspare0" }
|
|
|
|
{ "__int64_t" "st_qspare1" } ;
|
|
|
|
|
2008-10-06 23:51:06 -04:00
|
|
|
FUNCTION: int stat64 ( char* pathname, stat* buf ) ;
|
|
|
|
FUNCTION: int lstat64 ( char* pathname, stat* buf ) ;
|
2008-05-10 13:36:57 -04:00
|
|
|
|
2008-10-06 23:51:06 -04:00
|
|
|
: stat ( path buf -- n ) stat64 ;
|
|
|
|
: lstat ( path buf -- n ) lstat64 ;
|