Files
rtems/cpukit/libmisc/monitor/mon-task.c
Sebastian Huber ae359a9df4 shell: Display scheduler instead of current CPU
Display the scheduler name instead of the current CPU in the "task"
shell command.  The current CPU could be misleading in case locking
protocols are involved.  The "cpuuse" command can be used to obtain the
current CPU.
2017-06-16 06:13:50 +02:00

184 lines
4.8 KiB
C

/*
* RTEMS Monitor task support
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <rtems.h>
#include <rtems/monitor.h>
#include <rtems/score/threadimpl.h>
#include <rtems/score/threadqimpl.h>
#include <inttypes.h>
#include <stdio.h>
#include <string.h> /* memcpy() */
static void
rtems_monitor_task_wait_info(
rtems_monitor_task_t *canonical_task,
Thread_Control *rtems_thread
)
{
Thread_queue_Context queue_context;
const Thread_queue_Queue *queue;
canonical_task->wait[0] = '\0';
_Thread_queue_Context_initialize( &queue_context );
_Thread_Wait_acquire( rtems_thread, &queue_context );
queue = rtems_thread->Wait.queue;
if ( queue != NULL ) {
Objects_Id id;
_Thread_queue_Queue_get_name_and_id(
queue,
canonical_task->wait,
sizeof(canonical_task->wait),
&id
);
if (id != 0) {
snprintf(
canonical_task->wait,
sizeof(canonical_task->wait),
"%08" PRIx32,
id
);
}
} else if (
(rtems_thread->current_state & STATES_WAITING_FOR_BSD_WAKEUP) != 0
) {
const char *wmesg;
wmesg = rtems_thread->Wait.return_argument_second.immutable_object;
if (wmesg != NULL) {
strlcpy(
canonical_task->wait,
wmesg,
sizeof(canonical_task->wait)
);
}
}
_Thread_Wait_release( rtems_thread, &queue_context );
}
void
rtems_monitor_task_canonical(
rtems_monitor_task_t *canonical_task,
const void *thread_void
)
{
Thread_Control *rtems_thread;
RTEMS_API_Control *api;
Objects_Name name;
rtems_thread =
RTEMS_DECONST( Thread_Control *, (const Thread_Control *) thread_void );
api = rtems_thread->API_Extensions[ THREAD_API_RTEMS ];
_Objects_Name_to_string(
rtems_thread->Object.name,
false,
canonical_task->short_name,
sizeof( canonical_task->short_name )
);
_Thread_Get_name(
rtems_thread,
canonical_task->long_name,
sizeof( canonical_task->long_name )
);
name.name_u32 = _Thread_Scheduler_get_home( rtems_thread )->name;
_Objects_Name_to_string(
name,
false,
canonical_task->scheduler_name,
sizeof( canonical_task->scheduler_name )
);
rtems_monitor_task_wait_info( canonical_task, rtems_thread );
canonical_task->state = rtems_thread->current_state;
canonical_task->entry = rtems_thread->Start.Entry;
canonical_task->stack = rtems_thread->Start.Initial_stack.area;
canonical_task->stack_size = rtems_thread->Start.Initial_stack.size;
canonical_task->priority = _Thread_Get_priority( rtems_thread );
canonical_task->events = api->Event.pending_events;
/*
* FIXME: make this optionally cpu_time_executed
*/
#if 0
canonical_task->ticks = rtems_thread->cpu_time_executed;
#else
canonical_task->ticks = 0;
#endif
/* XXX modes and attributes only exist in the RTEMS API .. */
/* XXX not directly in the core thread.. they will have to be derived */
/* XXX if they are important enough to include anymore. */
canonical_task->modes = 0; /* XXX FIX ME.... rtems_thread->current_modes; */
canonical_task->attributes = 0 /* XXX FIX ME rtems_thread->API_Extensions[ THREAD_API_RTEMS ]->attribute_set */;
}
void
rtems_monitor_task_dump_header(
bool verbose RTEMS_UNUSED
)
{
fprintf(stdout,"\
ID NAME SHED PRI STATE MODES EVENTS WAITINFO\n"); /*
0a010004 SHLL UPD 100 READY P:T:nA NONE 00000000 */
rtems_monitor_separator();
}
/*
*/
void
rtems_monitor_task_dump(
rtems_monitor_task_t *monitor_task,
bool verbose RTEMS_UNUSED
)
{
int length = 0;
length += rtems_monitor_dump_id(monitor_task->id);
length += rtems_monitor_pad(9, length);
if (strcmp(monitor_task->short_name, monitor_task->long_name) == 0) {
length += fprintf(stdout, "%s", monitor_task->short_name);
} else {
length += fprintf(
stdout,
"%s %s",
monitor_task->short_name,
monitor_task->long_name
);
}
length += rtems_monitor_pad(30, length);
length += fprintf(stdout, "%s", monitor_task->scheduler_name);
length += rtems_monitor_pad(35, length);
length += rtems_monitor_dump_priority(monitor_task->priority);
length += rtems_monitor_pad(39, length);
length += rtems_monitor_dump_state(monitor_task->state);
length += rtems_monitor_pad(46, length);
length += rtems_monitor_dump_modes(monitor_task->modes);
length += rtems_monitor_pad(53, length);
length += rtems_monitor_dump_events(monitor_task->events);
length += rtems_monitor_pad(62, length);
length += fprintf(stdout, "%s", monitor_task->wait);
fprintf(stdout,"\n");
}