1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

sys/ps: fix comment style, superfluous declaration

This commit is contained in:
Ludwig Ortmann 2014-07-01 20:11:13 +02:00
parent 70dae32a3f
commit 295f32ac1b

View File

@ -39,7 +39,6 @@ const char *state_names[] = {
*/
void thread_print_all(void)
{
extern unsigned long hwtimer_now(void);
const char queued_name[] = {'_', 'Q'};
int i;
int overall_stacksz = 0;
@ -55,10 +54,10 @@ void thread_print_all(void)
tcb_t *p = (tcb_t *)sched_threads[i];
if (p != NULL) {
int state = p->status; // copy state
const char *sname = state_names[state]; // get state name
const char *queued = &queued_name[(int)(state >= STATUS_ON_RUNQUEUE)]; // get queued flag
int stacksz = p->stack_size; // get stack size
int state = p->status; /* copy state */
const char *sname = state_names[state]; /* get state name */
const char *queued = &queued_name[(int)(state >= STATUS_ON_RUNQUEUE)]; /* get queued flag */
int stacksz = p->stack_size; /* get stack size */
#if SCHEDSTATISTICS
int runtime_ticks = sched_pidlist[i].runtime_ticks / (hwtimer_now()/1000UL + 1);
int switches = sched_pidlist[i].schedules;