On 4/27/07, Jon Steel <[EMAIL PROTECTED]> wrote:
Thanks for the pointers. Heres the update.And just a quick question for anybody, why do some of the macros in the OS look like: #define DEBUG(x) do { ... } while(0); Is this some kind of compiler trick?
style(9) : If the macro encapsulates a compound statement, enclose it in a ``do'' loop, so that it can safely be used in ``if'' statements.
Thanks Again Jonathan Steel