Searched defs:DAEMON_THREADS (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DThreadCounts.java39 final static int DAEMON_THREADS = 21; field in class:ThreadCounts
43 final static int ALL_THREADS = DAEMON_THREADS + USER_THREADS;
49 private static Barrier barrier = new Barrier(DAEMON_THREADS);
55 // Start DAEMON_THREADS threads and wait to be sure they all are alive
56 barrier.set(DAEMON_THREADS);
57 for (int i = 0; i < DAEMON_THREADS; i++) {
68 DAEMON_THREADS);
70 if ( (!test.checkCount (DAEMON_THREADS)) ||
71 (!test.checkCreated(DAEMON_THREADS)) ||
72 (!test.checkPeak (DAEMON_THREADS)) ||
[all...]
H A DAllThreadIds.java38 final static int DAEMON_THREADS = 20; field in class:AllThreadIds
40 final static int ALL_THREADS = DAEMON_THREADS + USER_THREADS;
133 allThreads[i].setDaemon( (i < DAEMON_THREADS) ? true : false);
176 barrier.set(DAEMON_THREADS);
177 for (int i = 0; i < DAEMON_THREADS; i++) {
185 checkThreadCount(0, DAEMON_THREADS);
193 boolean live = (i >= DAEMON_THREADS);
219 barrier.set(ALL_THREADS - DAEMON_THREADS);
220 for (int i = DAEMON_THREADS; i < ALL_THREADS; i++) {
228 checkThreadCount(0, ALL_THREADS - DAEMON_THREADS);
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DMessages.java106 public static String DAEMON_THREADS; field in class:Messages

Completed in 39 milliseconds