Changeset 7f6a24ab in rtems for c/src/lib/libmisc
- Timestamp:
- 08/28/95 15:30:29 (28 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 5072b07
- Parents:
- 5250ff39
- Location:
- c/src/lib/libmisc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libmisc/monitor/mon-task.c
r5250ff39 r7f6a24ab 22 22 23 23 canonical_task->entry = rtems_thread->Start.entry_point; 24 canonical_task->argument = rtems_thread->Start. initial_argument;24 canonical_task->argument = rtems_thread->Start.numeric_argument; 25 25 canonical_task->stack = rtems_thread->Start.Initial_stack.area; 26 26 canonical_task->stack_size = rtems_thread->Start.Initial_stack.size; … … 28 28 canonical_task->state = rtems_thread->current_state; 29 29 canonical_task->wait_id = rtems_thread->Wait.id; 30 canonical_task->events = rtems_thread-> pending_events;30 canonical_task->events = rtems_thread->RTEMS_API->pending_events; 31 31 canonical_task->modes = rtems_thread->current_modes; 32 canonical_task->attributes = rtems_thread->attribute_set;33 (void) memcpy(canonical_task->notepad, rtems_thread-> Notepads, sizeof(canonical_task->notepad));32 canonical_task->attributes = 0 /* XXX FIX ME rtems_thread->RTEMS_API->attribute_set */; 33 (void) memcpy(canonical_task->notepad, rtems_thread->RTEMS_API->Notepads, sizeof(canonical_task->notepad)); 34 34 (void) memcpy(&canonical_task->wait_args, &rtems_thread->Wait.Extra, sizeof(canonical_task->wait_args)); 35 35 } -
c/src/lib/libmisc/stackchk/check.c
r5250ff39 r7f6a24ab 434 434 information = _Objects_Information_table[ class_index ]; 435 435 if ( information && information->is_thread ) { 436 for ( i=1 ; i < information->maximum ; i++ ) {436 for ( i=1 ; i <= information->maximum ; i++ ) { 437 437 the_thread = (Thread_Control *)information->local_table[ i ]; 438 438 Stack_check_Dump_threads_usage( the_thread );
Note: See TracChangeset
for help on using the changeset viewer.