2002-03-20 Chris Johns <ccj@acm.org>

* PR148.
	* monitor/mon-prmisc.c: Fixed to print task states correctly.
This commit is contained in:
Joel Sherrill
2002-03-20 14:33:00 +00:00
parent cb8e48e292
commit ab09d08366
4 changed files with 20 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
2002-03-20 Chris Johns <ccj@acm.org>
* PR148.
* monitor/mon-prmisc.c: Fixed to print task states correctly.
2002-01-28 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* shell/shell.c: Remove #undef __STRICT_ANSI__.

View File

@@ -133,7 +133,12 @@ rtems_assoc_t rtems_monitor_state_assoc[] = {
{ "Wsem", STATES_WAITING_FOR_SEMAPHORE },
{ "Wtime", STATES_WAITING_FOR_TIME },
{ "Wrpc", STATES_WAITING_FOR_RPC_REPLY },
{ "Wmutex", STATES_WAITING_FOR_MUTEX },
{ "Wcvar", STATES_WAITING_FOR_CONDITION_VARIABLE },
{ "Wjatx", STATES_WAITING_FOR_JOIN_AT_EXIT },
{ "Wsig", STATES_WAITING_FOR_SIGNAL },
{ "WRATE", STATES_WAITING_FOR_PERIOD },
{ "Wisig", STATES_INTERRUPTIBLE_BY_SIGNAL },
{ 0, 0, 0 },
};

View File

@@ -1,3 +1,8 @@
2002-03-20 Chris Johns <ccj@acm.org>
* PR148.
* monitor/mon-prmisc.c: Fixed to print task states correctly.
2002-01-28 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* shell/shell.c: Remove #undef __STRICT_ANSI__.

View File

@@ -133,7 +133,12 @@ rtems_assoc_t rtems_monitor_state_assoc[] = {
{ "Wsem", STATES_WAITING_FOR_SEMAPHORE },
{ "Wtime", STATES_WAITING_FOR_TIME },
{ "Wrpc", STATES_WAITING_FOR_RPC_REPLY },
{ "Wmutex", STATES_WAITING_FOR_MUTEX },
{ "Wcvar", STATES_WAITING_FOR_CONDITION_VARIABLE },
{ "Wjatx", STATES_WAITING_FOR_JOIN_AT_EXIT },
{ "Wsig", STATES_WAITING_FOR_SIGNAL },
{ "WRATE", STATES_WAITING_FOR_PERIOD },
{ "Wisig", STATES_INTERRUPTIBLE_BY_SIGNAL },
{ 0, 0, 0 },
};