* libc/include/sys/types.h: Include cygwin/types.h always under
Cygwin, not only if _POSIX_THREADS is defined.
This commit is contained in:
parent
36f86a5537
commit
2b43ad332f
|
@ -1,3 +1,8 @@
|
||||||
|
2002-05-22 Corinna Vinschen <vinschen@redhat.com>
|
||||||
|
|
||||||
|
* libc/include/sys/types.h: Include cygwin/types.h always under
|
||||||
|
Cygwin, not only if _POSIX_THREADS is defined.
|
||||||
|
|
||||||
2002-05-21 Dhananjay Deshpande <dhananjayd@kpit.com>
|
2002-05-21 Dhananjay Deshpande <dhananjayd@kpit.com>
|
||||||
|
|
||||||
* configure.host: Specify sys_dir=h8300hms for h8300-*-coff* target.
|
* configure.host: Specify sys_dir=h8300hms for h8300-*-coff* target.
|
||||||
|
|
|
@ -329,10 +329,11 @@ typedef struct {
|
||||||
int init_executed; /* has the initialization routine been run? */
|
int init_executed; /* has the initialization routine been run? */
|
||||||
} pthread_once_t; /* dynamic package initialization */
|
} pthread_once_t; /* dynamic package initialization */
|
||||||
#else
|
#else
|
||||||
|
#endif /* defined(_POSIX_THREADS) */
|
||||||
|
|
||||||
#if defined (__CYGWIN__)
|
#if defined (__CYGWIN__)
|
||||||
#include <cygwin/types.h>
|
#include <cygwin/types.h>
|
||||||
#endif
|
#endif
|
||||||
#endif /* defined(_POSIX_THREADS) */
|
|
||||||
|
|
||||||
#endif /* defined(__rtems__) */
|
#endif /* defined(__rtems__) */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue