2017-01-01 01:14:16 +01:00
|
|
|
/* Copyright (C) 1993-2017 Free Software Foundation, Inc.
|
1996-12-22 01:32:43 +01:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 06:58:11 +02:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1996-12-22 01:32:43 +01:00
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 06:58:11 +02:00
|
|
|
Lesser General Public License for more details.
|
1996-12-22 01:32:43 +01:00
|
|
|
|
2001-07-06 06:58:11 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-10 00:18:22 +01:00
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
1995-02-18 02:27:10 +01:00
|
|
|
|
|
|
|
#ifndef _DIRSTREAM_H
|
|
|
|
#define _DIRSTREAM_H 1
|
|
|
|
|
1996-02-27 01:55:03 +01:00
|
|
|
#include <sys/types.h>
|
1995-02-18 02:27:10 +01:00
|
|
|
|
2015-09-08 23:11:03 +02:00
|
|
|
#include <libc-lock.h>
|
1996-07-09 16:49:13 +02:00
|
|
|
|
1995-02-18 02:27:10 +01:00
|
|
|
/* Directory stream type.
|
|
|
|
|
|
|
|
The miscellaneous Unix `readdir' implementations read directory data
|
1996-02-27 01:55:03 +01:00
|
|
|
into a buffer and return `struct dirent *' pointers into it. */
|
1995-02-18 02:27:10 +01:00
|
|
|
|
1995-08-28 11:00:05 +02:00
|
|
|
struct __dirstream
|
1995-02-18 02:27:10 +01:00
|
|
|
{
|
1996-02-27 01:55:03 +01:00
|
|
|
int fd; /* File descriptor. */
|
1995-02-18 02:27:10 +01:00
|
|
|
|
2007-08-03 04:43:06 +02:00
|
|
|
__libc_lock_define (, lock) /* Mutex lock for this structure. */
|
|
|
|
|
1996-02-27 01:55:03 +01:00
|
|
|
size_t allocation; /* Space allocated for the block. */
|
|
|
|
size_t size; /* Total valid data in the block. */
|
|
|
|
size_t offset; /* Current offset into the block. */
|
1995-02-18 02:27:10 +01:00
|
|
|
|
1996-02-27 01:55:03 +01:00
|
|
|
off_t filepos; /* Position of next entry to read. */
|
2007-08-03 05:35:12 +02:00
|
|
|
|
2013-08-16 09:38:52 +02:00
|
|
|
int errcode; /* Delayed error code. */
|
|
|
|
|
2013-10-11 07:32:36 +02:00
|
|
|
/* Directory block. We must make sure that this block starts
|
|
|
|
at an address that is aligned adequately enough to store
|
|
|
|
dirent entries. Using the alignment of "void *" is not
|
|
|
|
sufficient because dirents on 32-bit platforms can require
|
|
|
|
64-bit alignment. We use "long double" here to be consistent
|
|
|
|
with what malloc uses. */
|
|
|
|
char data[0] __attribute__ ((aligned (__alignof__ (long double))));
|
1995-08-28 11:00:05 +02:00
|
|
|
};
|
1995-02-18 02:27:10 +01:00
|
|
|
|
1996-02-27 01:55:03 +01:00
|
|
|
#define _DIR_dirfd(dirp) ((dirp)->fd)
|
1995-02-25 02:23:32 +01:00
|
|
|
|
1995-02-18 02:27:10 +01:00
|
|
|
#endif /* dirstream.h */
|