This is the mail archive of the newlib@sources.redhat.com mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

useconds_t and RTEMS


Index: newlib/libc/include/sys/types.h
===================================================================
RCS file: /cvs/src/src/newlib/libc/include/sys/types.h,v
retrieving revision 1.8
diff -u -r1.8 types.h
--- types.h     2001/11/28 00:16:58     1.8
+++ types.h     2001/11/30 22:03:52
@@ -218,7 +218,7 @@
 #define __timer_t_defined
 #endif
 
-#ifdef __CYGWIN__
+#if defined(__rtems__) || defined(__CYGWIN__)
 typedef long useconds_t;
 #endif
 
this seems an obvious fix, since unistd.h shows:

#if defined(__CYGWIN__) || defined(__rtems__)
[...]
useconds_t _EXFUN(ualarm, (useconds_t __useconds));

-- 
  Aaron J. Grier  |   Frye Electronics, Tigard, OR   |  aaron@frye.com
     "In a few thousand years people will be scratching their heads
       wondering how on earth the first computer was invented and
          bootstrapped without a prior computer to do it with."
                    --  Chris Malcolm, on comp.arch


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]