Eliminate use of Newlib-specific <machine/types.h>
This change solves a glibc/BSD compatibility problem. glibc and BSD use double underscore types for internal types. The Linux port of Newlib uses some glibc provided internal type definitions which are not protected by guard defines, e.g. __off_t. To avoid a conflict Newlib uses single underscore types for some internal types, e.g. _off_t. However, for BSD compatibility we have to define the internal types with double underscore names in <sys/_types.h>. The header file <machine/types.h> is Newlib-specific. It was used instead of <sys/_types.h> to provide the internal type definitions _CLOCK_T, _TIME_T_, _CLOCKID_T_, _TIMER_T_, and __suseconds_t. Move these definitions to <sys/_types.h> (there exist two instances of this file, one for Linux and one for all other targets). This makes the _HAVE_SYSTYPES configuration define obsolete (could possibly break the __RDOS__ target). Use the standard <sys/_types.h> include throughout. Move __loff_t defintion to default (non-Linux) <sys/_types.h>. Define it via _off64_t to avoid a dependency on the compiler. Provide the __off_t definition via default (non-Linux) <sys/_types.h> based on _off_t for all systems except Cygwin. For Cygwin use _off64_t. Define off_t via __off_t. Provide the __pid_t definition via default (non-Linux) <sys/_types.h>. This prevents a potential __pid_t and pid_t incompatibility. Add BSD guard defines for pid_t. Signed-off-by: Sebastian Huber <sebastian.huber@embedded-brains.de>
This commit is contained in:
parent
eb6f1d7b77
commit
477463a201
|
@ -2,31 +2,10 @@
|
||||||
#define _MACHTYPES_H_
|
#define _MACHTYPES_H_
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The following section is RTEMS specific and is needed to more
|
* This file is provided for backward compatibility. It is no longer used in
|
||||||
* closely match the types defined in the BSD machine/types.h.
|
* Newlib. Do not add new things to it.
|
||||||
* This is needed to let the RTEMS/BSD TCP/IP stack compile.
|
|
||||||
*/
|
*/
|
||||||
#if defined(__rtems__)
|
|
||||||
#include <machine/_types.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define _CLOCK_T_ unsigned long /* clock() */
|
#include <sys/_types.h>
|
||||||
#define _TIME_T_ long /* time() */
|
|
||||||
#define _CLOCKID_T_ unsigned long
|
|
||||||
#define _TIMER_T_ unsigned long
|
|
||||||
|
|
||||||
#ifndef _HAVE_SYSTYPES
|
|
||||||
typedef long int __off_t;
|
|
||||||
typedef int __pid_t;
|
|
||||||
#ifdef __GNUC__
|
|
||||||
__extension__ typedef long long int __loff_t;
|
|
||||||
#else
|
|
||||||
typedef long int __loff_t;
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
typedef long __suseconds_t; /* microseconds (signed) */
|
|
||||||
|
|
||||||
#endif /* _MACHTYPES_H_ */
|
#endif /* _MACHTYPES_H_ */
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -92,7 +92,6 @@ extern "C" {
|
||||||
|
|
||||||
#include <sys/reent.h>
|
#include <sys/reent.h>
|
||||||
#include <sys/_types.h>
|
#include <sys/_types.h>
|
||||||
#include <machine/types.h>
|
|
||||||
|
|
||||||
#define __need_size_t
|
#define __need_size_t
|
||||||
#define __need_ptrdiff_t
|
#define __need_ptrdiff_t
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
#ifndef _SYS__TIMESPEC_H_
|
#ifndef _SYS__TIMESPEC_H_
|
||||||
#define _SYS__TIMESPEC_H_
|
#define _SYS__TIMESPEC_H_
|
||||||
|
|
||||||
#include <machine/types.h>
|
#include <sys/_types.h>
|
||||||
|
|
||||||
#ifndef __time_t_defined
|
#ifndef __time_t_defined
|
||||||
typedef _TIME_T_ time_t;
|
typedef _TIME_T_ time_t;
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
#ifndef _SYS__TIMEVAL_H_
|
#ifndef _SYS__TIMEVAL_H_
|
||||||
#define _SYS__TIMEVAL_H_
|
#define _SYS__TIMEVAL_H_
|
||||||
|
|
||||||
#include <machine/types.h>
|
#include <sys/_types.h>
|
||||||
|
|
||||||
#ifndef _SUSECONDS_T_DECLARED
|
#ifndef _SUSECONDS_T_DECLARED
|
||||||
typedef __suseconds_t suseconds_t;
|
typedef __suseconds_t suseconds_t;
|
||||||
|
|
|
@ -16,6 +16,12 @@
|
||||||
typedef long _off_t;
|
typedef long _off_t;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(__XMK__)
|
||||||
|
typedef signed char __pid_t;
|
||||||
|
#else
|
||||||
|
typedef int __pid_t;
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef __dev_t_defined
|
#ifndef __dev_t_defined
|
||||||
typedef short __dev_t;
|
typedef short __dev_t;
|
||||||
#endif
|
#endif
|
||||||
|
@ -31,6 +37,14 @@ typedef unsigned short __gid_t;
|
||||||
__extension__ typedef long long _off64_t;
|
__extension__ typedef long long _off64_t;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __CYGWIN__
|
||||||
|
typedef _off64_t __off_t;
|
||||||
|
#else
|
||||||
|
typedef _off_t __off_t;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
typedef _off64_t __loff_t;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* We need fpos_t for the following, but it doesn't have a leading "_",
|
* We need fpos_t for the following, but it doesn't have a leading "_",
|
||||||
* so we use _fpos_t instead.
|
* so we use _fpos_t instead.
|
||||||
|
@ -88,4 +102,11 @@ typedef _LOCK_RECURSIVE_T _flock_t;
|
||||||
typedef void *_iconv_t;
|
typedef void *_iconv_t;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#define _CLOCK_T_ unsigned long /* clock() */
|
||||||
|
#define _TIME_T_ long /* time() */
|
||||||
|
#define _CLOCKID_T_ unsigned long
|
||||||
|
#define _TIMER_T_ unsigned long
|
||||||
|
|
||||||
|
typedef long __suseconds_t; /* microseconds (signed) */
|
||||||
|
|
||||||
#endif /* _SYS__TYPES_H */
|
#endif /* _SYS__TYPES_H */
|
||||||
|
|
|
@ -92,7 +92,6 @@
|
||||||
/* we want the reentrancy structure to be returned by a function */
|
/* we want the reentrancy structure to be returned by a function */
|
||||||
#define __DYNAMIC_REENT__
|
#define __DYNAMIC_REENT__
|
||||||
#define HAVE_GETDATE
|
#define HAVE_GETDATE
|
||||||
#define _HAVE_SYSTYPES
|
|
||||||
#define _READ_WRITE_RETURN_TYPE _ssize_t
|
#define _READ_WRITE_RETURN_TYPE _ssize_t
|
||||||
#define __LARGE64_FILES 1
|
#define __LARGE64_FILES 1
|
||||||
/* we use some glibc header files so turn on glibc large file feature */
|
/* we use some glibc header files so turn on glibc large file feature */
|
||||||
|
|
|
@ -15,7 +15,7 @@ extern "C" {
|
||||||
#define _SYS_TIMEB_H
|
#define _SYS_TIMEB_H
|
||||||
|
|
||||||
#include <_ansi.h>
|
#include <_ansi.h>
|
||||||
#include <machine/types.h>
|
#include <sys/_types.h>
|
||||||
|
|
||||||
#ifndef __time_t_defined
|
#ifndef __time_t_defined
|
||||||
typedef _TIME_T_ time_t;
|
typedef _TIME_T_ time_t;
|
||||||
|
|
|
@ -5,7 +5,7 @@ extern "C" {
|
||||||
#define _SYS_TIMES_H
|
#define _SYS_TIMES_H
|
||||||
|
|
||||||
#include <_ansi.h>
|
#include <_ansi.h>
|
||||||
#include <machine/types.h>
|
#include <sys/_types.h>
|
||||||
|
|
||||||
#ifndef __clock_t_defined
|
#ifndef __clock_t_defined
|
||||||
typedef _CLOCK_T_ clock_t;
|
typedef _CLOCK_T_ clock_t;
|
||||||
|
|
|
@ -66,7 +66,6 @@ typedef quad_t * qaddr_t;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
# include <stddef.h>
|
# include <stddef.h>
|
||||||
# include <machine/types.h>
|
|
||||||
|
|
||||||
/* To ensure the stat struct's layout doesn't change when sizeof(int), etc.
|
/* To ensure the stat struct's layout doesn't change when sizeof(int), etc.
|
||||||
changes, we assume sizeof short and long never change and have all types
|
changes, we assume sizeof short and long never change and have all types
|
||||||
|
@ -175,10 +174,9 @@ typedef __uid_t uid_t;
|
||||||
typedef __gid_t gid_t;
|
typedef __gid_t gid_t;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__XMK__)
|
#ifndef _PID_T_DECLARED
|
||||||
typedef signed char pid_t;
|
typedef __pid_t pid_t; /* process id */
|
||||||
#else
|
#define _PID_T_DECLARED
|
||||||
typedef int pid_t;
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__rtems__)
|
#if defined(__rtems__)
|
||||||
|
|
|
@ -51,4 +51,11 @@ typedef struct
|
||||||
|
|
||||||
typedef struct { __flock_mutex_t mutex; } _flock_t;
|
typedef struct { __flock_mutex_t mutex; } _flock_t;
|
||||||
|
|
||||||
|
#define _CLOCK_T_ unsigned long /* clock() */
|
||||||
|
#define _TIME_T_ long /* time() */
|
||||||
|
#define _CLOCKID_T_ unsigned long
|
||||||
|
#define _TIMER_T_ unsigned long
|
||||||
|
|
||||||
|
typedef long __suseconds_t; /* microseconds (signed) */
|
||||||
|
|
||||||
#endif /* _SYS__TYPES_H */
|
#endif /* _SYS__TYPES_H */
|
||||||
|
|
|
@ -54,7 +54,6 @@
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <sys/config.h>
|
#include <sys/config.h>
|
||||||
#include <features.h>
|
#include <features.h>
|
||||||
#include <machine/types.h>
|
|
||||||
#include <sys/_types.h>
|
#include <sys/_types.h>
|
||||||
|
|
||||||
#if !defined(__time_t_defined) && !defined(_TIME_T)
|
#if !defined(__time_t_defined) && !defined(_TIME_T)
|
||||||
|
|
|
@ -5,9 +5,6 @@
|
||||||
#ifndef _MACHINE__TYPES_H
|
#ifndef _MACHINE__TYPES_H
|
||||||
#define _MACHINE__TYPES_H
|
#define _MACHINE__TYPES_H
|
||||||
|
|
||||||
/* This disables some conflicting type definitions in <machine/types.h> */
|
|
||||||
#define _HAVE_SYSTYPES
|
|
||||||
|
|
||||||
#include <machine/_default_types.h>
|
#include <machine/_default_types.h>
|
||||||
|
|
||||||
typedef __int32_t blksize_t;
|
typedef __int32_t blksize_t;
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#ifndef _SYS_TIME_H
|
#ifndef _SYS_TIME_H
|
||||||
#define _SYS_TIME_H
|
#define _SYS_TIME_H
|
||||||
|
|
||||||
#include <machine/types.h>
|
#include <sys/_types.h>
|
||||||
|
|
||||||
#ifndef __time_t_defined
|
#ifndef __time_t_defined
|
||||||
typedef _TIME_T_ time_t;
|
typedef _TIME_T_ time_t;
|
||||||
|
|
|
@ -34,12 +34,7 @@ typedef struct timespec timestruc_t;
|
||||||
|
|
||||||
#ifndef __off_t_defined
|
#ifndef __off_t_defined
|
||||||
#define __off_t_defined
|
#define __off_t_defined
|
||||||
/* Based on the newlib definitions. */
|
typedef __off_t off_t;
|
||||||
#if __WORDSIZE == 64
|
|
||||||
typedef _off_t off_t;
|
|
||||||
#else
|
|
||||||
typedef _off64_t off_t;
|
|
||||||
#endif
|
|
||||||
#endif /*__off_t_defined*/
|
#endif /*__off_t_defined*/
|
||||||
|
|
||||||
typedef __loff_t loff_t;
|
typedef __loff_t loff_t;
|
||||||
|
|
Loading…
Reference in New Issue