OSDN Git Service

Replace FSF snail mail address with URLs
[uclinux-h8/uClibc.git] / libc / misc / dirent / dirstream.h
1 /* Copyright (C) 1991, 1992 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
8
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 Library General Public License for more details.
13
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB.  If
16 not, see <http://www.gnu.org/licenses/>.  */
17
18 /*
19  *      POSIX Standard: 5.1.2 Directory Operations      <dirent.h>
20  */
21
22 #ifndef _DIRSTREAM_H
23
24 #define _DIRSTREAM_H    1
25
26 #include <features.h>
27 #include <sys/types.h>
28
29 #include <bits/uClibc_mutex.h>
30
31 /* Directory stream type.  */
32 struct __dirstream {
33   /* file descriptor */
34   int dd_fd;
35
36   /* offset of the next dir entry in buffer */
37   size_t dd_nextloc;
38
39   /* bytes of valid entries in buffer */
40   size_t dd_size;
41
42   /* -> directory buffer */
43   void *dd_buf;
44
45   /* offset of the next dir entry in directory. */
46   off_t dd_nextoff;
47
48   /* total size of buffer */
49   size_t dd_max;
50
51   /* lock */
52   __UCLIBC_MUTEX(dd_lock);
53 };                              /* stream data from opendir() */
54
55 #endif /* dirent.h  */