Package

Source Code of Main

import org.jvnet.winp.WinProcess;
import org.jvnet.winp.Priority;

/**
* Test program.
* @author Kohsuke Kawaguchi
*/
public class Main {
    public static void main(String[] args) {
        WinProcess p = new WinProcess(Integer.parseInt(args[0]));
        p.killRecursively();
        // p.setPriority(Priority.BELOW_NORMAL);
    }
}
TOP

Related Classes of Main

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.