Changeset 88d594a in rtems for cpukit/sapi


Ignore:
Timestamp:
05/24/95 21:39:42 (28 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
5b9d6ddf
Parents:
bf61e45c
Message:

Fully tested on all in-house targets

Location:
cpukit/sapi
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • cpukit/sapi/include/rtems/io.h

    rbf61e45c r88d594a  
    188188
    189189rtems_status_code _IO_Handler_routine(
    190   IO_operations     operation,
    191   rtems_device_major_number  major,
    192   rtems_device_minor_number  minor,
    193   void             *argument,
    194   unsigned32       *return_value
     190  IO_operations              operation,
     191  rtems_device_major_number  major,
     192  rtems_device_minor_number  minor,
     193  void                      *argument,
     194  unsigned32                *return_value
    195195);
    196196
  • cpukit/sapi/src/exinit.c

    rbf61e45c r88d594a  
    108108  _CPU_Initialize( cpu_table, _Thread_Dispatch );
    109109
     110  /*
     111   *  Do this as early as possible to insure no debugging output
     112   *  is even attempted to be printed.
     113   */
     114
     115  _Debug_Manager_initialization();
     116
    110117  multiprocessing_table = configuration_table->User_multiprocessing_table;
    111118  if ( multiprocessing_table == NULL )
  • cpukit/sapi/src/io.c

    rbf61e45c r88d594a  
    257257
    258258rtems_status_code _IO_Handler_routine(
    259   IO_operations     operation,
    260   rtems_device_major_number  major,
    261   rtems_device_minor_number  minor,
    262   void             *argument,
    263   unsigned32       *return_value
     259  IO_operations              operation,
     260  rtems_device_major_number  major,
     261  rtems_device_minor_number  minor,
     262  void                      *argument,
     263  unsigned32                *return_value
    264264)
    265265{
Note: See TracChangeset for help on using the changeset viewer.