Non-maskable interrupt

http://dbpedia.org/resource/Non-maskable_interrupt an entity of type: Company

Interrupció no emmascarable (amb acrònim en anglès NMI), en ciències de la computació, és una interrupció de maquinari que les màscares estàndard d'interrupció no poden deshabilitar i per tant la NMI sempre serà servida a la seva rutina d'interrupció. Les NMI ocorren quan hi ha incidències o errors no recuperables del maquinari i que necessiten atenció immediata. rdf:langString
Una interrupción no enmascarable (o NMI) es un tipo especial de interrupción usada en la mayoría de los microordenadores como el IBM PC y el Apple II. Una interrupción no enmascarable causa que la CPU deje lo que está haciendo, cambie el puntero de instrucción para que apunte a una dirección particular y continúe ejecutando el código de esa dirección. Se diferencia de los otros tipos de interrupción en que los programadores no pueden hacer que la CPU las ignore, aunque algunos ordenadores pueden por medios externos bloquear esa señal, dando un efecto similar al resto de las interrupciones. rdf:langString
Przerwanie niemaskowalne (ang. NMI – Non-Maskable Interrupt) – specjalny rodzaj przerwania występujący w większości architektur procesorów. Tym, co odróżnia je od zwykłego przerwania, jest brak możliwości zignorowania (zamaskowania) go poprzez ustawienie odpowiedniej maski bitowej w rejestrze IMR (ang. Interrupt Mask Register) kontrolera przerwań, stąd termin "niemaskowalne". Obecnie przerwań NMI używa się głównie do debugowania kodu programów, który może wyłączać zwykłe przerwania poprzez zwieranie ich obwodu (np. kod systemu operacyjnego). rdf:langString
Signál NMI (Non-maskable interrupt) neboli nemaskovatelné přerušení je speciální přerušovací signál mikroprocesoru (CPU) nebo jakéhokoli systému, který využívá paměť. Je určen k tomu, aby informoval systém o katastrofických dějích, které je nutné obsloužit neprodleně. Příkladem je nebo vykonání části programu, která se nedá odložit. rdf:langString
Bei einem Hardwareinterrupt (von engl. hardware, Gerät und engl./lat. interrupt, Unterbrechung) wird ein Interrupt durch einen Hardware-Baustein oder durch ein Peripheriegerät ausgelöst. Dabei unterscheidet man zwischen maskierbaren (sperrbaren) und nichtmaskierbaren Interrupts. Löst ein Gerät einen nichtmaskierbaren Interrupt aus (engl. „non-maskable interrupt“, kurz NMI), so wird dem NMI-Anschluss des Prozessors ein aktives Signal zugeführt. Der Prozessor arbeitet den gerade ausgeübten Befehl ab und führt unmittelbar danach einen Interrupt durch.Beim PC wird ein NMI ausgelöst, wenn ein Hardware-Reset durchgeführt werden soll oder ein schwerwiegender Hardware-Fehler vorliegt, zum Beispiel der „Parity Error“. Das ist ein Fehler im Arbeitsspeicher, der jedoch auch bei Befall mit dem Bootvir rdf:langString
In computing, a non-maskable interrupt (NMI) is a hardware interrupt that standard interrupt-masking techniques in the system cannot ignore. It typically occurs to signal attention for non-recoverable hardware errors. Some NMIs may be masked, but only by using proprietary methods specific to the particular NMI. An NMI is often used when response time is critical or when an interrupt should never be disabled during normal system operation. Such uses include reporting non-recoverable hardware errors, system debugging and profiling, and handling of special cases like system resets. rdf:langString
Nell'architettura dei calcolatori, un non-maskable interrupt ("interruzione non mascherabile", abbreviato in NMI) è un particolare tipo di segnale di interrupt che non può essere ignorato ("mascherato") dalla CPU. rdf:langString
rdf:langString Interrupció no emmascarable
rdf:langString Nemaskovatelné přerušení
rdf:langString Hardwareinterrupt
rdf:langString Interrupción no enmascarable
rdf:langString Non-maskable interrupt
rdf:langString Non-maskable interrupt
rdf:langString Przerwanie niemaskowalne
xsd:integer 1250055
xsd:integer 1103901358
rdf:langString Interrupció no emmascarable (amb acrònim en anglès NMI), en ciències de la computació, és una interrupció de maquinari que les màscares estàndard d'interrupció no poden deshabilitar i per tant la NMI sempre serà servida a la seva rutina d'interrupció. Les NMI ocorren quan hi ha incidències o errors no recuperables del maquinari i que necessiten atenció immediata.
rdf:langString Signál NMI (Non-maskable interrupt) neboli nemaskovatelné přerušení je speciální přerušovací signál mikroprocesoru (CPU) nebo jakéhokoli systému, který využívá paměť. Je určen k tomu, aby informoval systém o katastrofických dějích, které je nutné obsloužit neprodleně. Příkladem je nebo vykonání části programu, která se nedá odložit. V systému přerušení má toto přerušení nejvyšší prioritu a nelze ho zakázat. Mimo systém přerušení má však ještě vyšší prioritu DMA (Direct Memory Access), tj. požadavek na přímý přístup do paměti, kdy následně CPU předá sběrnici systému pro přenos dat z jedné oblasti paměti do jiné (přesun dat). Během této operace však procesor nemá přístup k paměti. Zcela nejvyšší prioritu pro CPU má signál Reset, který inicializuje celý systém.
rdf:langString Bei einem Hardwareinterrupt (von engl. hardware, Gerät und engl./lat. interrupt, Unterbrechung) wird ein Interrupt durch einen Hardware-Baustein oder durch ein Peripheriegerät ausgelöst. Dabei unterscheidet man zwischen maskierbaren (sperrbaren) und nichtmaskierbaren Interrupts. Löst ein Gerät einen nichtmaskierbaren Interrupt aus (engl. „non-maskable interrupt“, kurz NMI), so wird dem NMI-Anschluss des Prozessors ein aktives Signal zugeführt. Der Prozessor arbeitet den gerade ausgeübten Befehl ab und führt unmittelbar danach einen Interrupt durch.Beim PC wird ein NMI ausgelöst, wenn ein Hardware-Reset durchgeführt werden soll oder ein schwerwiegender Hardware-Fehler vorliegt, zum Beispiel der „Parity Error“. Das ist ein Fehler im Arbeitsspeicher, der jedoch auch bei Befall mit dem Bootvirus „Parity Boot“ ausgelöst werden kann. Demgegenüber können die Interrupt-Anforderungen (IRQ) maskiert werden. Diese Interrupts liegen am INTR-Anschluss des Prozessors an. Für die Bedienung von Hardware-Interrupts spielt der Interrupt-Controller eine wichtige Rolle. Er verwaltet mehrere Interrupt-Anforderungen und gibt sie geordnet nach Priorität an den Prozessor weiter.
rdf:langString Una interrupción no enmascarable (o NMI) es un tipo especial de interrupción usada en la mayoría de los microordenadores como el IBM PC y el Apple II. Una interrupción no enmascarable causa que la CPU deje lo que está haciendo, cambie el puntero de instrucción para que apunte a una dirección particular y continúe ejecutando el código de esa dirección. Se diferencia de los otros tipos de interrupción en que los programadores no pueden hacer que la CPU las ignore, aunque algunos ordenadores pueden por medios externos bloquear esa señal, dando un efecto similar al resto de las interrupciones.
rdf:langString In computing, a non-maskable interrupt (NMI) is a hardware interrupt that standard interrupt-masking techniques in the system cannot ignore. It typically occurs to signal attention for non-recoverable hardware errors. Some NMIs may be masked, but only by using proprietary methods specific to the particular NMI. An NMI is often used when response time is critical or when an interrupt should never be disabled during normal system operation. Such uses include reporting non-recoverable hardware errors, system debugging and profiling, and handling of special cases like system resets. Modern computer architectures typically use NMIs to handle non-recoverable errors which need immediate attention. Therefore, such interrupts should not be masked in the normal operation of the system. These errors include non-recoverable internal system chipset errors, corruption in system memory such as parity and ECC errors, and data corruption detected on system and peripheral buses. On some systems, a computer user can trigger an NMI through hardware and software debugging interfaces and system reset buttons. Programmers typically use debugging NMIs to diagnose and fix faulty code. In such cases, an NMI can execute an interrupt handler that transfers control to a special monitor program. From this program, a developer can inspect the machine's memory and examine the internal state of the program at the instant of its interruption. This also allows the debugging or diagnosing of computers which appear hung.
rdf:langString Nell'architettura dei calcolatori, un non-maskable interrupt ("interruzione non mascherabile", abbreviato in NMI) è un particolare tipo di segnale di interrupt che non può essere ignorato ("mascherato") dalla CPU. Un interrupt di questo tipo può essere usato per segnalare malfunzionamenti irrecuperabili delle componenti hardware del computer. È un segnale asincrono, poiché potrebbe avvenire in qualsiasi momento, diversamente dagli interrupt chiamati con la speciale istruzione int $type, dove type è il numero d'ordine, da 0 a 255. Gli interrupt giungono al processore mediante un determinato piedino attivo basso, /NMI. I motivi per cui viene generata un'interruzione di questo tipo sono legati principalmente a problemi di circuiteria all'interno del processore, si pensi ad un abbassamento improvviso della tensione. Questo speciale tipo di interrupt ha un tipo implicito fisso. La routine che va in esecuzione per effetto di queste tenterà di risolvere il problema che ha prodotto l'interrupt stesso. Occorre notare che questo tipo di interruzioni, come tutte quelle esterne, sono asincrone rispetto al programma.
rdf:langString Przerwanie niemaskowalne (ang. NMI – Non-Maskable Interrupt) – specjalny rodzaj przerwania występujący w większości architektur procesorów. Tym, co odróżnia je od zwykłego przerwania, jest brak możliwości zignorowania (zamaskowania) go poprzez ustawienie odpowiedniej maski bitowej w rejestrze IMR (ang. Interrupt Mask Register) kontrolera przerwań, stąd termin "niemaskowalne". Obecnie przerwań NMI używa się głównie do debugowania kodu programów, który może wyłączać zwykłe przerwania poprzez zwieranie ich obwodu (np. kod systemu operacyjnego).
xsd:nonNegativeInteger 7525

data from the linked data cloud