Changeset b80156c in rtems
- Timestamp:
- 05/17/16 13:15:17 (7 years ago)
- Branches:
- 5, master
- Children:
- dab902d5
- Parents:
- ee710ef
- git-author:
- Sebastian Huber <sebastian.huber@…> (05/17/16 13:15:17)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (05/20/16 05:49:41)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/score/src/objectextendinformation.c
ree710ef rb80156c 114 114 */ 115 115 if ( do_extend ) { 116 ISR_ Level level;116 ISR_lock_Context lock_context; 117 117 void **object_blocks; 118 118 uint32_t *inactive_per_block; … … 226 226 } 227 227 228 _Thread_Disable_dispatch();229 _ISR_ Disable( level);228 /* FIXME: https://devel.rtems.org/ticket/2280 */ 229 _ISR_lock_ISR_disable( &lock_context ); 230 230 231 231 old_tables = information->object_blocks; … … 242 242 ); 243 243 244 _ISR_Enable( level ); 245 _Thread_Enable_dispatch(); 244 _ISR_lock_ISR_enable( &lock_context ); 246 245 247 246 _Workspace_Free( old_tables );
Note: See TracChangeset
for help on using the changeset viewer.