Changeset 8bd41178 in rtems


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

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

  • sapi/include/confdefs.h, sapi/include/rtems/config.h, sapi/include/rtems/extension.h, sapi/include/rtems/fatal.h, sapi/include/rtems/init.h, sapi/include/rtems/io.h, sapi/src/exinit.c, sapi/src/extension.c, sapi/src/fatal.c, sapi/src/io.c: Convert to using c99 fixed size types.
Location:
cpukit
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • cpukit/ChangeLog

    r1d496f6 r8bd41178  
     12004-03-29      Ralf Corsepius <ralf_corsepius@rtems.org>
     2
     3        * sapi/include/confdefs.h, sapi/include/rtems/config.h,
     4        sapi/include/rtems/extension.h, sapi/include/rtems/fatal.h,
     5        sapi/include/rtems/init.h, sapi/include/rtems/io.h,
     6        sapi/src/exinit.c, sapi/src/extension.c, sapi/src/fatal.c,
     7        sapi/src/io.c: Convert to using c99 fixed size types.
     8
    192004-03-29      Ralf Corsepius <ralf_corsepius@rtems.org>
    210
  • cpukit/sapi/include/confdefs.h

    r1d496f6 r8bd41178  
    8282
    8383#ifdef CONFIGURE_INIT
    84 unsigned32 rtems_libio_number_iops = CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS;
     84uint32_t  rtems_libio_number_iops = CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS;
    8585#endif
    8686
  • cpukit/sapi/include/rtems/config.h

    r1d496f6 r8bd41178  
    7575
    7676typedef struct {
    77   rtems_unsigned32    node;             /* local node number */
    78   rtems_unsigned32    maximum_nodes;    /* maximum # nodes in system */
    79   rtems_unsigned32    maximum_global_objects; /* maximum # global objects */
    80   rtems_unsigned32    maximum_proxies;  /* maximum # proxies */
     77  uint32_t      node;             /* local node number */
     78  uint32_t      maximum_nodes;    /* maximum # nodes in system */
     79  uint32_t      maximum_global_objects; /* maximum # global objects */
     80  uint32_t      maximum_proxies;  /* maximum # proxies */
    8181#if defined(RTEMS_MULTIPROCESSING)
    8282  rtems_mpci_table   *User_mpci_table;  /* pointer to MPCI table */
     
    100100typedef struct {
    101101  void                             *work_space_start;
    102   rtems_unsigned32                  work_space_size;
    103   rtems_unsigned32                  maximum_extensions;
    104   rtems_unsigned32                  microseconds_per_tick;
    105   rtems_unsigned32                  ticks_per_timeslice;
    106   rtems_unsigned32                  maximum_devices;
    107   rtems_unsigned32                  maximum_drivers;
    108   rtems_unsigned32                  number_of_device_drivers;
     102  uint32_t                    work_space_size;
     103  uint32_t                    maximum_extensions;
     104  uint32_t                    microseconds_per_tick;
     105  uint32_t                    ticks_per_timeslice;
     106  uint32_t                    maximum_devices;
     107  uint32_t                    maximum_drivers;
     108  uint32_t                    number_of_device_drivers;
    109109  rtems_driver_address_table       *Device_driver_table;
    110   rtems_unsigned32                  number_of_initial_extensions;
     110  uint32_t                    number_of_initial_extensions;
    111111  rtems_extensions_table           *User_extension_table;
    112112  rtems_multiprocessing_table      *User_multiprocessing_table;
  • cpukit/sapi/include/rtems/extension.h

    r1d496f6 r8bd41178  
    7777
    7878void _Extension_Manager_initialization(
    79   unsigned32 maximum_extensions
     79  uint32_t  maximum_extensions
    8080);
    8181
  • cpukit/sapi/include/rtems/fatal.h

    r1d496f6 r8bd41178  
    3838
    3939void volatile rtems_fatal_error_occurred(
    40   unsigned32 the_error
     40  uint32_t  the_error
    4141);
    4242
  • cpukit/sapi/include/rtems/init.h

    r1d496f6 r8bd41178  
    9999
    100100void rtems_shutdown_executive(
    101   unsigned32 result
     101  uint32_t  result
    102102);
    103103
  • cpukit/sapi/include/rtems/io.h

    r1d496f6 r8bd41178  
    4646 */
    4747 
    48 typedef unsigned32 rtems_device_major_number;
    49 typedef unsigned32 rtems_device_minor_number;
     48typedef uint32_t  rtems_device_major_number;
     49typedef uint32_t  rtems_device_minor_number;
    5050 
    5151typedef rtems_status_code rtems_device_driver;
     
    7272typedef struct {
    7373    char                     *device_name;
    74     unsigned32                device_name_length;
     74    uint32_t                  device_name_length;
    7575    rtems_device_major_number major;
    7676    rtems_device_minor_number minor;
     
    8686 */
    8787
    88 SAPI_EXTERN unsigned32                  _IO_Number_of_drivers;
     88SAPI_EXTERN uint32_t                    _IO_Number_of_drivers;
    8989SAPI_EXTERN rtems_driver_address_table *_IO_Driver_address_table;
    90 SAPI_EXTERN unsigned32                  _IO_Number_of_devices;
     90SAPI_EXTERN uint32_t                    _IO_Number_of_devices;
    9191SAPI_EXTERN rtems_driver_name_t        *_IO_Driver_name_table;
    9292
     
    101101void _IO_Manager_initialization(
    102102  rtems_driver_address_table *driver_table,
    103   unsigned32                  drivers_in_table,
    104   unsigned32                  number_of_drivers,
    105   unsigned32                  number_of_devices
     103  uint32_t                    drivers_in_table,
     104  uint32_t                    number_of_drivers,
     105  uint32_t                    number_of_devices
    106106);
    107107
  • cpukit/sapi/src/exinit.c

    r1d496f6 r8bd41178  
    319319
    320320void rtems_shutdown_executive(
    321    unsigned32 result
     321   uint32_t  result
    322322)
    323323{
  • cpukit/sapi/src/extension.c

    r1d496f6 r8bd41178  
    3232
    3333void _Extension_Manager_initialization(
    34   unsigned32 maximum_extensions
     34  uint32_t  maximum_extensions
    3535)
    3636{
  • cpukit/sapi/src/fatal.c

    r1d496f6 r8bd41178  
    2929
    3030void volatile rtems_fatal_error_occurred(
    31   unsigned32 the_error
     31  uint32_t  the_error
    3232)
    3333{
  • cpukit/sapi/src/io.c

    r1d496f6 r8bd41178  
    3333void _IO_Manager_initialization(
    3434    rtems_driver_address_table *driver_table,
    35     unsigned32                  drivers_in_table,
    36     unsigned32                  number_of_drivers,
    37     unsigned32                  number_of_devices
     35    uint32_t                    drivers_in_table,
     36    uint32_t                    number_of_drivers,
     37    uint32_t                    number_of_devices
    3838)
    3939{
    4040  void                *tmp;
    41   unsigned32           index;
     41  uint32_t             index;
    4242  rtems_driver_name_t *np;
    4343
     
    212212{
    213213    rtems_driver_name_t *np;
    214     unsigned32 level;
    215     unsigned32 index;
     214    uint32_t  level;
     215    uint32_t  index;
    216216
    217217    /* find an empty slot */
Note: See TracChangeset for help on using the changeset viewer.