What does 8badf00d mean? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T21:45:52Zhttp://stackoverflow.com/feeds/question/773442http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/773442/what-does-8badf00d-mean4What does 8badf00d mean?vlado.grigorov2009-04-21T16:20:12Z2009-04-22T22:08:49Z
<p>Sometimes my iPhone application crashes with a weird crashlog, that reads exception code is 0x8badf00d. The stacktraces show random snapshots of app execution, but nothing suspicious. This happens very rarely and I'm not able to find out how to reproduce it. Does anybody know more about this kind of exception and exception code? </p>
<p>Here is an excerpt from my crashlogs:</p>
<blockquote>
<p>Exception Type: 00000020<br />
Exception Codes: 0x8badf00d<br />
Highlighted Thread: 0 </p>
<p>Application Specific Information:<br />
Failed to deactivate</p>
<p>Thread 0:<br />
...<br />
< nothing suspicious here ><br />
...</p>
<p>Unknown thread crashed with unknown flavor: 5, state_count: 1</p>
</blockquote>
http://stackoverflow.com/questions/773442/what-does-8badf00d-mean/773460#7734605Answer by Aaron Hoffman for What does 8badf00d mean?Aaron Hoffman2009-04-21T16:24:15Z2009-04-21T16:24:15Z<p>ate bad food ??</p>
http://stackoverflow.com/questions/773442/what-does-8badf00d-mean/773468#7734682Answer by McWafflestix for What does 8badf00d mean?McWafflestix2009-04-21T16:25:15Z2009-04-21T16:25:15Z<p>It's a failure code added by a dev with a good sense of humor. Because hexadecimal uses letters as well as numbers, it's possible to come up with hex numbers that look approximately like english words, such as "0xdeadbeef", etc. I'm sure that the exception has a specific meaning, but if there's no major symptoms associated with it, you can probably ignore it without too much concern.</p>
http://stackoverflow.com/questions/773442/what-does-8badf00d-mean/773470#7734702Answer by Joel Coehoorn for What does 8badf00d mean?Joel Coehoorn2009-04-21T16:25:30Z2009-04-21T16:25:30Z<p>It's some programmer's idea of a joke. You have to pick a number for your code, but the number doesn't necessarily mean anything in itself. <code>8badf00d</code> is just another way to write the number 2,343,432,205, and was chosen because it looks 'funny' when represented in hex for an exception log.</p>
http://stackoverflow.com/questions/773442/what-does-8badf00d-mean/773474#7734747Answer by SQLMenace for What does 8badf00d mean?SQLMenace2009-04-21T16:26:43Z2009-04-21T16:26:43Z<p>It is HexSpeak, see here: <a href="http://en.wikipedia.org/wiki/Hexspeak" rel="nofollow">http://en.wikipedia.org/wiki/Hexspeak</a></p>
http://stackoverflow.com/questions/773442/what-does-8badf00d-mean/779387#77938716Answer by rpetrich for What does 8badf00d mean?rpetrich2009-04-22T21:48:26Z2009-04-22T21:48:26Z<p>0x8badf00d is the error code that the watchdog raises when an application takes too long to launch or terminate. See Apple's <a href="http://developer.apple.com/iphone/library/technotes/tn2008/tn2151.html" rel="nofollow">Crash Reporting for iPhone OS Applications</a> document</p>