diff options
Diffstat (limited to 'sysdeps/unix/dirstream.h')
-rw-r--r-- | sysdeps/unix/dirstream.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sysdeps/unix/dirstream.h b/sysdeps/unix/dirstream.h index 87e78b61ad..3d2796778a 100644 --- a/sysdeps/unix/dirstream.h +++ b/sysdeps/unix/dirstream.h @@ -22,6 +22,8 @@ Cambridge, MA 02139, USA. */ #include <sys/types.h> +#include <libc-lock.h> + /* Directory stream type. The miscellaneous Unix `readdir' implementations read directory data @@ -37,6 +39,8 @@ struct __dirstream size_t offset; /* Current offset into the block. */ off_t filepos; /* Position of next entry to read. */ + + __libc_lock_define (, lock); /* Mutex lock for this structure. */ }; #define _DIR_dirfd(dirp) ((dirp)->fd) |