Changeset b06e68ef in rtems for c/src/exec/libcsupport/include


Ignore:
Timestamp:
08/17/95 19:51:51 (28 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
95fbca1
Parents:
3b438fa
Message:

Numerous miscellaneous features incorporated from Tony Bennett
(tbennett@…) including the following major additions:

+ variable length messages
+ named devices
+ debug monitor
+ association tables/variables

Location:
c/src/exec/libcsupport/include
Files:
3 added
1 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/libcsupport/include/clockdrv.h

    r3b438fa rb06e68ef  
    2424
    2525extern volatile rtems_unsigned32 Clock_driver_ticks;
     26extern rtems_device_major_number rtems_clock_major;
     27extern rtems_device_minor_number rtems_clock_minor;
    2628
    27 /* functions */
    28 
    29 rtems_task Exit_task();
    30 void exit_task_init();
    31 
    32 void Install_clock( rtems_isr_entry );
    33 void ReInstall_clock( rtems_isr_entry );
    34 void Clock_exit();
    35 
    36 rtems_isr Clock_isr(
    37   rtems_vector_number
    38 );
    39 
    40 /* driver entries */
     29/* default clock driver entry */
    4130
    4231#define CLOCK_DRIVER_TABLE_ENTRY \
    43   { Clock_initialize, NULL, NULL, NULL, NULL, NULL }
    44 
     32  { Clock_initialize, NULL, NULL, NULL, NULL, Clock_control }
     33 
    4534rtems_device_driver Clock_initialize(
    4635  rtems_device_major_number,
    4736  rtems_device_minor_number,
    48   void *,
    49   rtems_id,
    50   rtems_unsigned32 *
     37  void *
     38);
     39
     40rtems_device_driver Clock_control(
     41  rtems_device_major_number major,
     42  rtems_device_minor_number minor,
     43  void *pargp
    5144);
    5245
Note: See TracChangeset for help on using the changeset viewer.