forked from Imagelibrary/rtems
2001-01-31 Joel Sherrill <joel@OARcorp.com>
* include/rtems/rtems/timer.h: Missed merging these modifications in previous merge of new timer functionality.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2001-01-31 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* include/rtems/rtems/timer.h: Missed merging these modifications
|
||||||
|
in previous merge of new timer functionality.
|
||||||
|
|
||||||
2001-01-29 Joel Sherrill <joel@OARcorp.com>
|
2001-01-29 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
* Fixed bug where resetting a timer that was not at the head
|
* Fixed bug where resetting a timer that was not at the head
|
||||||
|
|||||||
@@ -318,6 +318,27 @@ rtems_status_code rtems_timer_initiate_server(
|
|||||||
rtems_attribute attribute_set
|
rtems_attribute attribute_set
|
||||||
);
|
);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* rtems_timer_get_information
|
||||||
|
*
|
||||||
|
* DESCRIPTION:
|
||||||
|
*
|
||||||
|
* This routine implements the rtems_timer_get_information directive.
|
||||||
|
* This directive returns information about the timer.
|
||||||
|
*/
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
Timer_Classes the_class;
|
||||||
|
Watchdog_Interval initial;
|
||||||
|
Watchdog_Interval start_time;
|
||||||
|
Watchdog_Interval stop_time;
|
||||||
|
} rtems_timer_information;
|
||||||
|
|
||||||
|
rtems_status_code rtems_timer_get_information(
|
||||||
|
Objects_Id id,
|
||||||
|
rtems_timer_information *the_info
|
||||||
|
);
|
||||||
|
|
||||||
#ifndef __RTEMS_APPLICATION__
|
#ifndef __RTEMS_APPLICATION__
|
||||||
#include <rtems/rtems/timer.inl>
|
#include <rtems/rtems/timer.inl>
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
2001-01-31 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* include/rtems/rtems/timer.h: Missed merging these modifications
|
||||||
|
in previous merge of new timer functionality.
|
||||||
|
|
||||||
2001-01-29 Joel Sherrill <joel@OARcorp.com>
|
2001-01-29 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
* Fixed bug where resetting a timer that was not at the head
|
* Fixed bug where resetting a timer that was not at the head
|
||||||
|
|||||||
@@ -318,6 +318,27 @@ rtems_status_code rtems_timer_initiate_server(
|
|||||||
rtems_attribute attribute_set
|
rtems_attribute attribute_set
|
||||||
);
|
);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* rtems_timer_get_information
|
||||||
|
*
|
||||||
|
* DESCRIPTION:
|
||||||
|
*
|
||||||
|
* This routine implements the rtems_timer_get_information directive.
|
||||||
|
* This directive returns information about the timer.
|
||||||
|
*/
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
Timer_Classes the_class;
|
||||||
|
Watchdog_Interval initial;
|
||||||
|
Watchdog_Interval start_time;
|
||||||
|
Watchdog_Interval stop_time;
|
||||||
|
} rtems_timer_information;
|
||||||
|
|
||||||
|
rtems_status_code rtems_timer_get_information(
|
||||||
|
Objects_Id id,
|
||||||
|
rtems_timer_information *the_info
|
||||||
|
);
|
||||||
|
|
||||||
#ifndef __RTEMS_APPLICATION__
|
#ifndef __RTEMS_APPLICATION__
|
||||||
#include <rtems/rtems/timer.inl>
|
#include <rtems/rtems/timer.inl>
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user