Changeset 5a800eee in rtems


Ignore:
Timestamp:
03/25/04 10:38:16 (20 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
a7c4e122
Parents:
d04abc83
Message:

2004-03-25 Ralf Corsepius <corsepiu@…>

  • include/tmacros.h: Convert to using c99 fixed size types.
Location:
testsuites/support
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • testsuites/support/ChangeLog

    rd04abc83 r5a800eee  
     12004-03-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * include/tmacros.h: Convert to using c99 fixed size types.
     4
    152004-03-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    26
  • testsuites/support/include/tmacros.h

    rd04abc83 r5a800eee  
    4747#define check_dispatch_disable_level( _expect ) \
    4848  do { \
    49     extern volatile rtems_unsigned32 _Thread_Dispatch_disable_level; \
     49    extern volatile uint32_t  _Thread_Dispatch_disable_level; \
    5050    if ( (_expect) != -1 && _Thread_Dispatch_disable_level != (_expect) ) { \
    5151      printf( "\n_Thread_Dispatch_disable_level is (%d) not %d\n", \
     
    200200
    201201#define put_name( name, crlf ) \
    202 { rtems_unsigned32 c0, c1, c2, c3; \
     202{ uint32_t  c0, c1, c2, c3; \
    203203  c0 = (name >> 24) & 0xff; \
    204204  c1 = (name >> 16) & 0xff; \
     
    228228     rtems_configuration_get_rtems_api_configuration()->number_of_initialization_tasks )
    229229
    230 static inline rtems_unsigned32 get_ticks_per_second( void )
     230static inline uint32_t  get_ticks_per_second( void )
    231231{
    232232  rtems_interval ticks_per_second;
Note: See TracChangeset for help on using the changeset viewer.