Examples of IRQManager


Examples of org.jnode.vm.scheduler.IRQManager

    }
   
    @Override
    public void execute() {
        final VmProcessor proc = VmProcessor.current();
        final IRQManager irqMgr = proc.getIRQManager();
        final int max = irqMgr.getNumIRQs();
        for (int i = 0; i < max; i++) {
            getOutput().getPrintWriter().println("IRQ" + i + '\t' + irqMgr.getIrqCount(i) + '\t'
                    + irqMgr.getHandlerInfo(i));
        }
    }
View Full Code Here
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.