Changeset e7d03cbc in rtems


Ignore:
Timestamp:
03/31/04 05:18:13 (20 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
40d6543
Parents:
bd97803
Message:

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

  • bspstart.c, gnatcommon.c: Convert to using c99 fixed size types.
Location:
c/src/lib/libbsp/sparc/shared
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/sparc/shared/ChangeLog

    rbd97803 re7d03cbc  
     12004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
     2
     3        * bspstart.c, gnatcommon.c: Convert to using c99 fixed size types.
     4
    152003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    26
  • c/src/lib/libbsp/sparc/shared/bspstart.c

    rbd97803 re7d03cbc  
    4545 */
    4646
    47 extern rtems_unsigned32  rdb_start;
     47extern uint32_t          rdb_start;
    4848
    4949/*
     
    5353 */
    5454
    55 rtems_unsigned32 CPU_SPARC_CLICKS_PER_TICK;
     55uint32_t        CPU_SPARC_CLICKS_PER_TICK;
    5656
    5757#if SIMSPARC_FAST_IDLE
     
    7272)
    7373{
    74     static rtems_unsigned32 normal_clock = ~0;
    75     static rtems_unsigned32 fast_clock;
     74    static uint32_t        normal_clock = ~0;
     75    static uint32_t        fast_clock;
    7676
    7777    /* init our params on first call */
     
    101101 
    102102void bsp_postdriver_hook(void);
    103 void bsp_libc_init( void *, unsigned32, int );
     103void bsp_libc_init( void *, uint32_t, int );
    104104extern void bsp_spurious_initialize();
    105105
     
    114114{
    115115  extern int end;
    116   rtems_unsigned32 heap_start;
    117   rtems_unsigned32 heap_size;
    118 
    119   heap_start = (rtems_unsigned32) &end;
     116  uint32_t        heap_start;
     117  uint32_t        heap_size;
     118
     119  heap_start = (uint32_t) &end;
    120120  if (heap_start & (CPU_ALIGNMENT-1))
    121121    heap_start = (heap_start + CPU_ALIGNMENT) & ~(CPU_ALIGNMENT-1);
  • c/src/lib/libbsp/sparc/shared/gnatcommon.c

    rbd97803 re7d03cbc  
    1818  (rtems_vector_number trap)
    1919{
    20   rtems_unsigned32 real_trap;
    21   rtems_unsigned32 signal;
     20  uint32_t        real_trap;
     21  uint32_t        signal;
    2222
    2323  real_trap = SPARC_REAL_TRAP_NUMBER (trap);
     
    4848  (rtems_vector_number trap)
    4949{
    50   rtems_unsigned32 real_trap;
     50  uint32_t        real_trap;
    5151
    5252  real_trap = SPARC_REAL_TRAP_NUMBER (trap);
     
    8585__gnat_install_handler_common (int t1, int t2)
    8686{
    87   rtems_unsigned32 trap;
     87  uint32_t        trap;
    8888  rtems_isr_entry previous_isr;
    8989
Note: See TracChangeset for help on using the changeset viewer.