Changeset 04323c98 in rtems
- Timestamp:
- Jul 26, 2010, 8:27:04 PM (11 years ago)
- Branches:
- 4.11, 5, master
- Children:
- 80c1577
- Parents:
- 80031e2
- Location:
- cpukit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
r80031e2 r04323c98 1 2010-07-26 Joel Sherrill <joel.sherrill@oarcorp.com> 2 3 * rtems/src/ratemonperiod.c: Remove tabs. 4 1 5 2010-07-26 Joel Sherrill <joel.sherrilL@OARcorp.com> 2 6 -
cpukit/rtems/src/ratemonperiod.c
r80031e2 r04323c98 138 138 */ 139 139 _Timespec_Subtract( 140 140 &_Thread_Time_of_last_context_switch, &uptime, &ran 141 141 ); 142 142 … … 344 344 345 345 if ( the_period->state == RATE_MONOTONIC_EXPIRED ) { 346 347 348 349 350 351 352 353 354 355 356 357 358 346 /* 347 * Update statistics from the concluding period 348 */ 349 _Rate_monotonic_Update_statistics( the_period ); 350 351 _ISR_Enable( level ); 352 353 the_period->state = RATE_MONOTONIC_ACTIVE; 354 the_period->next_length = length; 355 356 _Watchdog_Insert_ticks( &the_period->Timer, length ); 357 _Thread_Enable_dispatch(); 358 return RTEMS_TIMEOUT; 359 359 } 360 360
Note: See TracChangeset
for help on using the changeset viewer.