.\" Copyright (C) 1995 Andries Brouwer (aeb@cwi.nl) .\" .\" 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. .\" .\" Written 11 June 1995 by Andries Brouwer .\" Modified 22 July 1995 by Michael Chastain : .\" Derived from 'readdir.2'. .\" Modified Tue Oct 22 08:11:14 EDT 1996 by Eric S. Raymond .\" Translation (c) 1998 Przemek Borys .\" Last update: A. Krzysztofowicz , Jan 2002, .\" manpages 1.47 .\" .TH GETDENTS 2 1995-07-22 "Linux 1.3.6" "Podręcznik programisty Linuksa" .SH NAZWA getdents \- pobranie wpisów z katalogu .SH SKŁADNIA .nf .B #include .B #include .B #include .B #include .sp .B _syscall3(int, getdents, uint, fd, struct dirent *, dirp, uint, count); .sp .BI "int getdents(unsigned int " fd ", struct dirent *" dirp ", unsigned int " count ); .fi .SH OPIS \fI Uwaga! To tłumaczenie może być nieaktualne!\fP .PP .B getdents odczytuje kolejne struktury .I dirent z katalogu wskazywanego przez .I fd do obszaru pamięci wskazywanego przez .IR dirp . Parametr .I count jest rozmiarem obszaru pamięci. .PP Struktura .I dirent jest zadeklarowana następująco: .PP .RS .nf struct dirent { long d_ino; /* numer i-węzła */ off_t d_off; /* offset do następnego \fIdirent\fP */ unsigned short d_reclen; /* długość tego \fIdirent\fP */ char d_name [NAZWA_MAX+1]; /* nazwa pliku (zakończona NUL) */ } .fi .RE .PP .I d_ino jest numerem i-węzła. .I d_off jest odległością od początku katalogu do początku następnej struktury .IR dirent . .I d_reclen jest wielkością tej całej struktury .IR dirent . .I d_name jest nazwą pliku zakończoną znakiem NUL. .PP Ta funkcja zastępuje .BR readdir (2). .SH "WARTOŚĆ ZWRACANA" Po pomyślnym zakończeniu zwracana jest ilość odczytanych bajtów. Na końcu katalogu zwracane jest 0. Przy błędzie zwracane jest \-1 i odpowiednio ustawiane .IR errno . .SH "BŁĘDY" .TP .B EBADF Nieprawidłowy deskryptor pliku .IR fd . .TP .B EFAULT Argument wskazuje poza przestrzeń adresową wywołującego procesu. .TP .B EINVAL Bufor wynikowy jest za mały. .TP .B ENOENT Nie ma takiego katalogu. .TP .B ENOTDIR Deskryptor pliku nie odnosi się do katalogu. .SH "ZGODNE Z" SVr4, SVID. SVr4 dokumentuje dodatkowe błędy ENOLINK, EIO. .SH "ZOBACZ TAKŻE" .BR readdir (2), .BR readdir (3) .SH "INFORMACJE O TŁUMACZENIU" Powyższe tłumaczenie pochodzi z nieistniejącego już Projektu Tłumaczenia Manuali i \fImoże nie być aktualne\fR. W razie zauważenia różnic między powyższym opisem a rzeczywistym zachowaniem opisywanego programu lub funkcji, prosimy o zapoznanie się z oryginalną (angielską) wersją strony podręcznika za pomocą polecenia: .IP man \-\-locale=C 2 getdents .PP Prosimy o pomoc w aktualizacji stron man \- więcej informacji można znaleźć pod adresem http://sourceforge.net/projects/manpages\-pl/.