bus error traps - definitie. Wat is bus error traps
Diclib.com
Woordenboek ChatGPT
Voer een woord of zin in in een taal naar keuze 👆
Taal:

Vertaling en analyse van woorden door kunstmatige intelligentie ChatGPT

Op deze pagina kunt u een gedetailleerde analyse krijgen van een woord of zin, geproduceerd met behulp van de beste kunstmatige intelligentietechnologie tot nu toe:

  • hoe het woord wordt gebruikt
  • gebruiksfrequentie
  • het wordt vaker gebruikt in mondelinge of schriftelijke toespraken
  • opties voor woordvertaling
  • Gebruiksvoorbeelden (meerdere zinnen met vertaling)
  • etymologie

Wat (wie) is bus error traps - definitie

SIGBUS; Data bus error; Unaligned memory access

computer bus         
  • conventional PCI]] bus card slot (very bottom)
SYSTEM THAT TRANSFERS DATA BETWEEN COMPONENTS WITHIN A COMPUTER
Data bus; Address bus; Computer buses; Memory bus; Bus (computer); I/O bus; Internal bus; 100MHz bus; 133MHz bus; Asynchronous bus; Synchronous bus; PC bus; Hardware bus; External data bus; Computer bus; RAM bus; External bus; Cache bus; Digital bus; Computer/bus; Interconnect (computing); Data buses; Draft:Data Bus; Data highway; Address line; Motherboard bus; Processor bus
bus
address bus         
  • conventional PCI]] bus card slot (very bottom)
SYSTEM THAT TRANSFERS DATA BETWEEN COMPONENTS WITHIN A COMPUTER
Data bus; Address bus; Computer buses; Memory bus; Bus (computer); I/O bus; Internal bus; 100MHz bus; 133MHz bus; Asynchronous bus; Synchronous bus; PC bus; Hardware bus; External data bus; Computer bus; RAM bus; External bus; Cache bus; Digital bus; Computer/bus; Interconnect (computing); Data buses; Draft:Data Bus; Data highway; Address line; Motherboard bus; Processor bus
<processor> The connections between the CPU and memory which carry the address from/to which the CPU wishes to read or write. The number of bits of address bus determines the maximum size of memory which the processor can access. See also data bus. (1995-03-22)
bus error         
<processor> A fatal failure in the execution of a {machine language} instruction resulting from the processor detecting an anomalous condition on its bus. Such conditions include invalid address alignment (accessing a multi-byte number at an odd address), accessing a physical address that does not correspond to any device, or some other device-specific hardware error. A bus error triggers a processor-level exception which Unix translates into a "SIGBUS" signal which, if not caught, will terminate the current process. (2000-04-04)

Wikipedia

Bus error

In computing, a bus error is a fault raised by hardware, notifying an operating system (OS) that a process is trying to access memory that the CPU cannot physically address: an invalid address for the address bus, hence the name. In modern use on most architectures these are much rarer than segmentation faults, which occur primarily due to memory access violations: problems in the logical address or permissions.

On POSIX-compliant platforms, bus errors usually result in the SIGBUS signal being sent to the process that caused the error. SIGBUS can also be caused by any general device fault that the computer detects, though a bus error rarely means that the computer hardware is physically broken—it is normally caused by a bug in software. Bus errors may also be raised for certain other paging errors; see below.