home *** CD-ROM | disk | FTP | other *** search
- package java.lang;
-
- class ProcessReaper extends Thread {
- ProcessReaper() {
- SecurityManager.setScopePermission();
- ((Thread)this).setDaemon(true);
- }
-
- private native void waitForDeath();
-
- public void run() {
- SecurityManager.setScopePermission();
- ((Thread)this).setName("ProcessReaper");
- SecurityManager.resetScopePermission();
- this.waitForDeath();
- }
- }
-