Changeset 48e34595 in rtems
- Timestamp:
- 04/09/97 20:04:22 (26 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 192259f
- Parents:
- bbb846b
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/headers/watchdog.h
rbbb846b r48e34595 79 79 80 80 typedef struct { 81 Chain_Node Node;82 Watchdog_States state;83 Watchdog_Interval initial;84 Watchdog_Interval delta_interval;85 Watchdog_Interval start_time;86 Watchdog_Interval stop_time;81 Chain_Node Node; 82 Watchdog_States state; 83 Watchdog_Interval initial; 84 Watchdog_Interval delta_interval; 85 Watchdog_Interval start_time; 86 Watchdog_Interval stop_time; 87 87 Watchdog_Service_routine_entry routine; 88 Objects_Id id;89 void *user_data;88 Objects_Id id; 89 void *user_data; 90 90 } Watchdog_Control; 91 91 -
c/src/exec/score/include/rtems/score/watchdog.h
rbbb846b r48e34595 79 79 80 80 typedef struct { 81 Chain_Node Node;82 Watchdog_States state;83 Watchdog_Interval initial;84 Watchdog_Interval delta_interval;85 Watchdog_Interval start_time;86 Watchdog_Interval stop_time;81 Chain_Node Node; 82 Watchdog_States state; 83 Watchdog_Interval initial; 84 Watchdog_Interval delta_interval; 85 Watchdog_Interval start_time; 86 Watchdog_Interval stop_time; 87 87 Watchdog_Service_routine_entry routine; 88 Objects_Id id;89 void *user_data;88 Objects_Id id; 89 void *user_data; 90 90 } Watchdog_Control; 91 91 -
cpukit/score/include/rtems/score/watchdog.h
rbbb846b r48e34595 79 79 80 80 typedef struct { 81 Chain_Node Node;82 Watchdog_States state;83 Watchdog_Interval initial;84 Watchdog_Interval delta_interval;85 Watchdog_Interval start_time;86 Watchdog_Interval stop_time;81 Chain_Node Node; 82 Watchdog_States state; 83 Watchdog_Interval initial; 84 Watchdog_Interval delta_interval; 85 Watchdog_Interval start_time; 86 Watchdog_Interval stop_time; 87 87 Watchdog_Service_routine_entry routine; 88 Objects_Id id;89 void *user_data;88 Objects_Id id; 89 void *user_data; 90 90 } Watchdog_Control; 91 91
Note: See TracChangeset
for help on using the changeset viewer.