File: libstatvfs.tex

package info (click to toggle)
python2.1 2.1.3dfsg-1sarge1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 38,028 kB
  • ctags: 64,228
  • sloc: python: 186,023; ansic: 184,754; xml: 43,435; sh: 12,381; makefile: 3,523; perl: 3,108; lisp: 2,460; cpp: 106; sed: 2
file content (55 lines) | stat: -rw-r--r-- 1,447 bytes parent folder | download | duplicates (17)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
\section{\module{statvfs} ---
         Constants used with \function{os.statvfs()}}

\declaremodule{standard}{statvfs}
% LaTeX'ed from comments in module
\sectionauthor{Moshe Zadka}{moshez@zadka.site.co.il}
\modulesynopsis{Constants for interpreting the result of
                \function{os.statvfs()}.}

The \module{statvfs} module defines constants so interpreting the result
if \function{os.statvfs()}, which returns a tuple, can be made without
remembering ``magic numbers.''  Each of the constants defined in this
module is the \emph{index} of the entry in the tuple returned by
\function{os.statvfs()} that contains the specified information.


\begin{datadesc}{F_BSIZE}
Preferred file system block size.
\end{datadesc}

\begin{datadesc}{F_FRSIZE}
Fundamental file system block size.
\end{datadesc}

\begin{datadesc}{F_BLOCKS}
Total number of blocks in the filesystem.
\end{datadesc}

\begin{datadesc}{F_BFREE}
Total number of free blocks.
\end{datadesc}

\begin{datadesc}{F_BAVAIL}
Free blocks available to non-super user.
\end{datadesc}

\begin{datadesc}{F_FILES}
Total number of file nodes.
\end{datadesc}

\begin{datadesc}{F_FFREE}
Total number of free file nodes.
\end{datadesc}

\begin{datadesc}{F_FAVAIL}
Free nodes available to non-super user.
\end{datadesc}

\begin{datadesc}{F_FLAG}
Flags. System dependent: see \cfunction{statvfs()} man page.
\end{datadesc}

\begin{datadesc}{F_NAMEMAX}
Maximum file name length.
\end{datadesc}