Changeset 40d6543 in rtems


Ignore:
Timestamp:
03/31/04 05:19:16 (20 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
6505d3fa
Parents:
e7d03cbc
Message:

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

  • clock/clock.c, include/bsp.h, shmsupp/cause_intr.c, shmsupp/getcfg.c, shmsupp/lock.c, startup/bspstart.c: Convert to using c99 fixed size types.
Location:
c/src/lib/libbsp/unix/posix
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/unix/posix/ChangeLog

    re7d03cbc r40d6543  
     12004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
     2
     3        * clock/clock.c, include/bsp.h, shmsupp/cause_intr.c,
     4        shmsupp/getcfg.c, shmsupp/lock.c, startup/bspstart.c: Convert to
     5        using c99 fixed size types.
     6
    172004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • c/src/lib/libbsp/unix/posix/clock/clock.c

    re7d03cbc r40d6543  
    2020void Clock_exit(void);
    2121
    22 volatile rtems_unsigned32 Clock_driver_ticks;
     22volatile uint32_t        Clock_driver_ticks;
    2323
    24 rtems_unsigned32 Clock_driver_vector;
     24uint32_t        Clock_driver_vector;
    2525
    2626/*
     
    8585)
    8686{
    87     rtems_unsigned32 isrlevel;
     87    uint32_t        isrlevel;
    8888    rtems_libio_ioctl_args_t *args = pargp;
    8989
  • c/src/lib/libbsp/unix/posix/include/bsp.h

    re7d03cbc r40d6543  
    9797extern char                    **rtems_argv;
    9898
    99 extern rtems_unsigned32          bsp_isr_level;
     99extern uint32_t                  bsp_isr_level;
    100100
    101101extern char *rtems_progname;    /* UNIX executable name */
  • c/src/lib/libbsp/unix/posix/shmsupp/cause_intr.c

    re7d03cbc r40d6543  
    2424
    2525void Shm_Cause_interrupt_unix(
    26   rtems_unsigned32 node
     26  uint32_t        node
    2727)
    2828{
  • c/src/lib/libbsp/unix/posix/shmsupp/getcfg.c

    re7d03cbc r40d6543  
    3434
    3535void Shm_Cause_interrupt_unix(
    36   rtems_unsigned32 node
     36  uint32_t        node
    3737);
    3838
    3939void Shm_Get_configuration(
    40   rtems_unsigned32   localnode,
     40  uint32_t           localnode,
    4141  shm_config_table **shmcfg
    4242)
     
    4646    Shm_Is_master_node(),
    4747    (void **)&BSP_shm_cfgtbl.base,
    48     (unsigned32 *)&BSP_shm_cfgtbl.length
     48    (uint32_t*)&BSP_shm_cfgtbl.length
    4949  );
    5050
  • c/src/lib/libbsp/unix/posix/shmsupp/lock.c

    re7d03cbc r40d6543  
    4444)
    4545{
    46   rtems_unsigned32   isr_level;
     46  uint32_t           isr_level;
    4747
    4848  rtems_interrupt_disable( isr_level );
     
    6363)
    6464{
    65   rtems_unsigned32   isr_level;
     65  uint32_t           isr_level;
    6666
    6767  _CPU_SHM_Unlock( lq_cb->lock );
  • c/src/lib/libbsp/unix/posix/startup/bspstart.c

    re7d03cbc r40d6543  
    3535rtems_multiprocessing_table  BSP_Multiprocessing;
    3636rtems_cpu_table              Cpu_table;
    37 rtems_unsigned32             bsp_isr_level;
    38 rtems_unsigned32             Heap_size;
     37uint32_t                     bsp_isr_level;
     38uint32_t                     Heap_size;
    3939int                          rtems_argc;
    4040char                       **rtems_argv;
     
    5454 */
    5555
    56 rtems_unsigned32 CPU_CLICKS_PER_TICK;
     56uint32_t        CPU_CLICKS_PER_TICK;
    5757
    5858/*
     
    6161 
    6262void bsp_postdriver_hook(void);
    63 void bsp_libc_init( void *, unsigned32, int );
     63void bsp_libc_init( void *, uint32_t, int );
    6464
    6565/*
     
    119119void bsp_start(void)
    120120{
    121     unsigned32 workspace_ptr;
     121    uint32_t  workspace_ptr;
    122122
    123123    /*
     
    174174 
    175175    workspace_ptr =
    176       (unsigned32) sbrk(BSP_Configuration.work_space_size + CPU_ALIGNMENT);
     176      (uint32_t) sbrk(BSP_Configuration.work_space_size + CPU_ALIGNMENT);
    177177    workspace_ptr += CPU_ALIGNMENT - 1;
    178178    workspace_ptr &= ~(CPU_ALIGNMENT - 1);
Note: See TracChangeset for help on using the changeset viewer.