Changeset f0cbd19e in rtems


Ignore:
Timestamp:
03/31/04 05:08:27 (20 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
3393df5e
Parents:
6fda59f
Message:

2004-03-31 Ralf Corsepius <ralf_corsepius@…>

  • clock/ckinit.c, include/bsp.h, startup/bspstart.c, timer/timer.c: Convert to using c99 fixed size types.
Location:
c/src/lib/libbsp/i386/i386ex
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/i386/i386ex/ChangeLog

    r6fda59f rf0cbd19e  
     12004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
     2
     3        * clock/ckinit.c, include/bsp.h, startup/bspstart.c, timer/timer.c:
     4        Convert to using c99 fixed size types.
     5
    162004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    27
  • c/src/lib/libbsp/i386/i386ex/clock/ckinit.c

    r6fda59f rf0cbd19e  
    3232#include <stdlib.h>
    3333
    34 rtems_unsigned32 Clock_isrs;              /* ISRs until next tick */
    35 static rtems_unsigned32 Clock_initial_isr_value;
     34uint32_t        Clock_isrs;              /* ISRs until next tick */
     35static uint32_t        Clock_initial_isr_value;
    3636
    37 volatile rtems_unsigned32 Clock_driver_ticks;
     37volatile uint32_t        Clock_driver_ticks;
    3838
    3939void Clock_exit( void );
  • c/src/lib/libbsp/i386/i386ex/include/bsp.h

    r6fda59f rf0cbd19e  
    7676#define rtems_bsp_delay( _microseconds ) \
    7777  { \
    78     rtems_unsigned32 _counter; \
     78    uint32_t        _counter; \
    7979    \
    8080    _counter = (_microseconds); \
  • c/src/lib/libbsp/i386/i386ex/startup/bspstart.c

    r6fda59f rf0cbd19e  
    4242 */
    4343
    44 extern rtems_unsigned32  rdb_start;
     44extern uint32_t          rdb_start;
    4545
    4646/*
     
    4949 
    5050void bsp_postdriver_hook(void);
    51 void bsp_libc_init( void *, unsigned32, int );
     51void bsp_libc_init( void *, uint32_t, int );
    5252
    5353/*
     
    6868{
    6969    extern int heap_bottom;
    70     rtems_unsigned32 heap_start;
    71     rtems_unsigned32 heap_size;
     70    uint32_t        heap_start;
     71    uint32_t        heap_size;
    7272
    73     heap_start = (rtems_unsigned32) &heap_bottom;
     73    heap_start = (uint32_t) &heap_bottom;
    7474    if (heap_start & (CPU_ALIGNMENT-1))
    7575      heap_start = (heap_start + CPU_ALIGNMENT) & ~(CPU_ALIGNMENT-1);
  • c/src/lib/libbsp/i386/i386ex/timer/timer.c

    r6fda59f rf0cbd19e  
    111111int Read_timer()
    112112{
    113   register rtems_unsigned32 clicks;
    114   register rtems_unsigned32 total;
     113  register uint32_t        clicks;
     114  register uint32_t        total;
    115115
    116116/*  outport_byte( TBCR, 0x00 );  stop the timer -- not needed on intel */
Note: See TracChangeset for help on using the changeset viewer.