.\" -*- nroff -*- .\" Copyright (C) 1995, Thomas K. Dyas .\" .\" Permission is granted to make and distribute verbatim copies of this .\" manual provided the copyright notice and this permission notice are .\" preserved on all copies. .\" .\" Permission is granted to copy and distribute modified versions of this .\" manual under the conditions for verbatim copying, provided that the .\" entire resulting derived work is distributed under the terms of a .\" permission notice identical to this one .\" .\" Since the Linux kernel and libraries are constantly changing, this .\" manual page may be incorrect or out-of-date. The author(s) assume no .\" responsibility for errors or omissions, or for damages resulting from .\" the use of the information contained herein. The author(s) may not .\" have taken the same level of care in the production of this manual, .\" which is licensed free of charge, as they might when working .\" professionally. .\" .\" Formatted or processed versions of this manual, if unaccompanied by .\" the source, must acknowledge the copyright and authors of this work. .\" .\" Created Wed Aug 9 1995 Thomas K. Dyas .\" Modified Fri Jan 31 23:52:21 1997 by Eric S. Raymond .\" .TH USTAT 2 "09/08/1995" "Linux 1.3.16" "Manual do Programador Linux" .SH NOME ustat \- obtém estatistícas do sistema de arquivos .SH SINOPSE .nf .B #include .sp .BI "int ustat(dev_t " dev ", struct ustat * " ubuf ); .SH DESCRIÇÃO .B ustat devolve informações sobre um sistema de arquivos montado. .I dev é um número de dispositivo identificando um dispositivo contendo um arquivo de sistema montado. .I ubuf é um ponteiro para uma estrutura ustat que contém os seguintes membros: .sp .RS .nf .ne 7 .ta 8n 16n 32n daddr_t f_tfree; /* Total free blocks */ ino_t f_tinode; /* Number of free inodes */ char f_fname[6]; /* Filsys name */ char f_fpack[6]; /* Filsys pack name */ .ta .fi .RE .PP Os dois últimos campos, f_fname e f_fpack, não estão implementados e sempre serão preenchidos com caracteres nulos. .SH "VALORES RETORNADOS" Em caso de sucesso, zero é retornado e a estrutura ustat aponta para .I ubuf que será preenchido. Caso contrário, \-1 é retornado, e .I errno é selecionado apropriadamente. .SH ERROS .TP .B EINVAL .I dev não se refere a um dispositivo contendo um arquivo de sistema montado. .TP .B EFAULT .I ubuf aponta para fora de seu espaço de endereço acessível. .TP .B ENOSYS A arquivo de sistema montado referenciado por .I dev não suporta esta operação, ou é alguma versão do Linux anterior a versão 1.3.16. .SH NOTAS .B ustat somente tem sido provida para compatibilidade. Todos programas novo deveriam usar .BR statfs (2) . .SH "DE ACORDO COM" SVr4. SVr4 documenta condições de erros adicionais ENOLINK, ECOMM, e EINTR mas não tem a condição ENOSYS. .SH "VEJA TAMBÉM" .BR statfs (2), .BR stat (2) .SH TRADUZIDO POR LDP-BR em 21/08/2000. \&\fR\&\f(CWAndré L. Fassone Canova (tradução)\fR \&\fR\&\f(CWxxxxxxxxxxxxxxxxxxxxxxxxx (revisão)\fR