From 6276af0ff19da39b3368dbce16cd7356177f8b1b Mon Sep 17 00:00:00 2001 From: John Birrell Date: Tue, 20 Nov 2007 01:49:00 +0000 Subject: [PATCH] Use a forward definition of an opaque structure rather than a void to avoid a strict alias type check failure in gcc 4.2. --- include/dirent.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/dirent.h b/include/dirent.h index d686dafc8e9f..3c2f0715f8cb 100644 --- a/include/dirent.h +++ b/include/dirent.h @@ -60,6 +60,7 @@ #define DIRBLKSIZ 1024 struct _telldir; /* see telldir.h */ +struct pthread_mutex; /* structure describing an open directory. */ typedef struct _dirdesc { @@ -71,7 +72,7 @@ typedef struct _dirdesc { long dd_seek; /* magic cookie returned by getdirentries */ long dd_rewind; /* magic cookie for rewinding */ int dd_flags; /* flags for readdir */ - void *dd_lock; /* hack to avoid including */ + struct pthread_mutex *dd_lock; /* lock */ struct _telldir *dd_td; /* telldir position recording */ } DIR;