Changeset cba5e81 in rtems


Ignore:
Timestamp:
03/31/04 03:26:46 (20 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
1c17b3e
Parents:
8c93623
Message:

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

  • startup/bspstart.c: Convert to using c99 fixed size types.
Location:
c/src/lib/libbsp/powerpc/gen405
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/powerpc/gen405/ChangeLog

    r8c93623 rcba5e81  
     12004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
     2
     3        * startup/bspstart.c: Convert to using c99 fixed size types.
     4
    152004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    26
  • c/src/lib/libbsp/powerpc/gen405/startup/bspstart.c

    r8c93623 rcba5e81  
    8484 
    8585void bsp_postdriver_hook(void);
    86 void bsp_libc_init( void *, unsigned32, int );
     86void bsp_libc_init( void *, uint32_t, int );
    8787
    8888/*
     
    118118    extern int _end;
    119119    extern int _heap_end;
    120     rtems_unsigned32        heap_start;
    121     rtems_unsigned32        heap_size;
    122     rtems_unsigned32        heap_end;
     120    uint32_t          heap_start;
     121    uint32_t        heap_size;
     122    uint32_t        heap_end;
    123123
    124124
    125     heap_start = (rtems_unsigned32) &_end;
     125    heap_start = (uint32_t  ) &_end;
    126126    if (heap_start & (CPU_ALIGNMENT-1))
    127127        heap_start = (heap_start + CPU_ALIGNMENT) & ~(CPU_ALIGNMENT-1);
    128128
    129     heap_end = (rtems_unsigned32) &_heap_end;
     129    heap_end = (uint32_t  ) &_heap_end;
    130130    if (heap_end & (CPU_ALIGNMENT-1))
    131131        heap_end = (heap_end + CPU_ALIGNMENT) & ~(CPU_ALIGNMENT-1);
Note: See TracChangeset for help on using the changeset viewer.