diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2002-11-07 19:27:36 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2002-11-07 19:27:36 +0000 |
commit | dd7ee147db24eaaa37f333fa93ce31efe949d9bf (patch) | |
tree | e9399790bc9dfd4304546acff76ea834b9e8c88d /newlib/libc/include/machine | |
parent | 783747919d1180bbca4b29a3b3bea27633adae11 (diff) | |
download | cygnal-dd7ee147db24eaaa37f333fa93ce31efe949d9bf.tar.gz cygnal-dd7ee147db24eaaa37f333fa93ce31efe949d9bf.tar.bz2 cygnal-dd7ee147db24eaaa37f333fa93ce31efe949d9bf.zip |
2002-11-07 Joel Sherrill <joel@OARcorp.com>
* libc/sys/rtems/machine: New directory.
* libc/sys/rtems/machine/limits.h, libc/sys/rtems/machine/param.h,
libc/sys/rtems/sys/param.h, libc/sys/rtems/sys/syslimits.h,
libc/sys/rtems/sys/utime.h: New files added to make *-rtems newlib
targets more BSD like when installed without requiring files to
be overwritten at install point when RTEMS itself is installed.
* Makefile.am: Pick up system dependent machine .h files such as
might be found on a BSD-ish system.
* Makefile.in: Regenerate.
* libc/include/machine/types.h: When on an RTEMS target, define a
few BSD flavor types.
Diffstat (limited to 'newlib/libc/include/machine')
-rw-r--r-- | newlib/libc/include/machine/types.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/newlib/libc/include/machine/types.h b/newlib/libc/include/machine/types.h index e1fa4c773..ccc847274 100644 --- a/newlib/libc/include/machine/types.h +++ b/newlib/libc/include/machine/types.h @@ -1,6 +1,32 @@ #ifndef _MACHTYPES_H_ #define _MACHTYPES_H_ +/* + * The following section is RTEMS specific and is needed to more + * closely match the types defined in the BSD machine/types.h. + * This is needed to let the RTEMS/BSD TCP/IP stack compile. + */ + +#if defined(__rtems__) +typedef long long int64_t; +#if defined( __h8300__) +typedef long int32_t; +#else +typedef int int32_t; +#endif +typedef short int16_t; +typedef char int8_t; + +typedef unsigned long long u_int64_t; +#if defined( __h8300__) +typedef unsigned long u_int32_t; +#else +typedef unsigned int u_int32_t; +#endif +typedef unsigned short u_int16_t; +typedef unsigned char u_int8_t; +#endif + #define _CLOCK_T_ unsigned long /* clock() */ #define _TIME_T_ long /* time() */ #define _CLOCKID_T_ unsigned long |