Changeset dc09e380 in rtems
- Timestamp:
- Dec 10, 2009, 10:20:11 PM (11 years ago)
- Branches:
- 4.10, 4.11, 5, master
- Children:
- 4cbb4af6
- Parents:
- fe0286a
- Location:
- cpukit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
rfe0286a rdc09e380 1 2009-12-10 Joel Sherrill <joel.sherrill@OARcorp.com> 2 3 PR 1482 4 * posix/src/timersettime.c: Exit dispatching critical section. 5 1 6 2009-12-10 Joel Sherrill <joel.sherrill@oarcorp.com> 2 7 -
cpukit/posix/src/timersettime.c
rfe0286a rdc09e380 105 105 ptimer 106 106 ); 107 if ( !activated ) 107 if ( !activated ) { 108 _Thread_Enable_dispatch(); 108 109 return 0; 110 } 109 111 110 /* The timer has been started and is running */ 111 /* return the old ones in "ovalue" */ 112 /* 113 * The timer has been started and is running. So we return the 114 * old ones in "ovalue" 115 */ 112 116 if ( ovalue ) 113 117 *ovalue = ptimer->timer_data; … … 117 121 ptimer->state = POSIX_TIMER_STATE_CREATE_RUN; 118 122 _TOD_Get( &ptimer->time ); 119 123 _Thread_Enable_dispatch(); 120 124 return 0; 121 125
Note: See TracChangeset
for help on using the changeset viewer.