(boolean v)
| 254 | } |
| 255 | |
| 256 | public synchronized void setDaemon(boolean v) { |
| 257 | if (getState() != State.NEW) { |
| 258 | throw new IllegalStateException(); |
| 259 | } |
| 260 | |
| 261 | daemon = v; |
| 262 | } |
| 263 | |
| 264 | public static native void yield(); |
| 265 |
no test coverage detected