heisenbug
Also found in: Dictionary, Thesaurus, Medical, Financial, Wikipedia.
Related to heisenbug: Mandelbug
heisenbug
(jargon)/hi:'zen-buhg/ (From Heisenberg's Uncertainty
Principle in quantum physics) A bug that disappears or alters
its behaviour when one attempts to probe or isolate it. (This
usage is not even particularly fanciful; the use of a debugger
sometimes alters a program's operating environment
significantly enough that buggy code, such as that which
relies on the values of uninitialised memory, behaves quite
differently.)
In C, nine out of ten heisenbugs result from uninitialised auto variables, fandango on core phenomena (especially lossage related to corruption of the malloc arena) or errors that smash the stack.
Opposite: Bohr bug. See also mandelbug, schroedinbug.
In C, nine out of ten heisenbugs result from uninitialised auto variables, fandango on core phenomena (especially lossage related to corruption of the malloc arena) or errors that smash the stack.
Opposite: Bohr bug. See also mandelbug, schroedinbug.
This article is provided by FOLDOC - Free Online Dictionary of Computing (foldoc.org)
Heisenbug
A bug in software that cannot be duplicated while under observation in a debugger. German theoretical physicist Werner Heisenberg showed that observing quantum mechanical behavior actually alters it. A software debugger may sometimes change the operating environment just enough to perform the process without error. For example, data that might have been stored in hardware registers when the program was optimized may be stored in main memory when compiled for debugging, and the memory values may be less accurate.Timing can also be a cause of Heisenbugs; for example, a multithreaded process may crash under normal operation but work perfectly when instructions are executed one at a time. See bug and debugger.
Copyright © 1981-2019 by The Computer Language Company Inc. All Rights reserved. THIS DEFINITION IS FOR PERSONAL USE ONLY. All other reproduction is strictly prohibited without permission from the publisher.