Mosa.HardwareSystem.InterruptManager.InterruptManager C# (CSharp) 메소드

InterruptManager() 공개 메소드

Initializes a new instance of the InterruptManager class.
public InterruptManager ( ) : System.Collections.Generic
리턴 System.Collections.Generic
        public InterruptManager()
        {
            interruptHandlers = new LinkedList<IHardwareDevice>[MaxInterrupts];

            for (int i = 0; i < MaxInterrupts; i++)
            {
                interruptHandlers[i] = new LinkedList<IHardwareDevice>();
            }
        }