print priority

This commit is contained in:
Doug MacEachern 2005-11-22 22:22:13 +00:00
parent 60271c8ac9
commit 2a6c6d566a

View File

@ -22,6 +22,7 @@ public class TestProcState extends SigarTestCase {
char state = procState.getState(); char state = procState.getState();
traceln(procState.getName() + "=" + state); traceln(procState.getName() + "=" + state);
traceln("threads=" + procState.getThreads()); traceln("threads=" + procState.getThreads());
traceln("priority=" + procState.getPriority());
assertTrue((state == 'R') || (state == 'S')); assertTrue((state == 'R') || (state == 'S'));