1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
'''
statvfs.pxd
This file contains Cython definitions for sys/statvfs.h
Copyright © 2010 Nikolaus Rath <Nikolaus.org>
This file is part of Python-LLFUSE. This work may be distributed under
the terms of the GNU LGPL.
'''
cdef extern from "<sys/statvfs.h>" nogil:
ctypedef int fsblkcnt_t
ctypedef int fsfilcnt_t
struct statvfs:
unsigned long f_bsize
unsigned long f_frsize
fsblkcnt_t f_blocks
fsblkcnt_t f_bfree
fsblkcnt_t f_bavail
fsfilcnt_t f_files
fsfilcnt_t f_ffree
fsfilcnt_t f_favail
unsigned long f_namemax
|