What does 8badf00d mean? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T21:45:52Z http://stackoverflow.com/feeds/question/773442 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/773442/what-does-8badf00d-mean 4 What does 8badf00d mean? vlado.grigorov 2009-04-21T16:20:12Z 2009-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 /> &lt; 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#773460 5 Answer by Aaron Hoffman for What does 8badf00d mean? Aaron Hoffman 2009-04-21T16:24:15Z 2009-04-21T16:24:15Z <p>ate bad food ??</p> http://stackoverflow.com/questions/773442/what-does-8badf00d-mean/773468#773468 2 Answer by McWafflestix for What does 8badf00d mean? McWafflestix 2009-04-21T16:25:15Z 2009-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#773470 2 Answer by Joel Coehoorn for What does 8badf00d mean? Joel Coehoorn 2009-04-21T16:25:30Z 2009-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#773474 7 Answer by SQLMenace for What does 8badf00d mean? SQLMenace 2009-04-21T16:26:43Z 2009-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#779387 16 Answer by rpetrich for What does 8badf00d mean? rpetrich 2009-04-22T21:48:26Z 2009-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>