Possible Duplicate:
Why are there sometimes meaningless do/while and if/else statements in C/C++ macros?
What's the use of do while(0) when we define a macro?
how does do{} while(0) work in macro?

I wonder what the use do{ ... } while(0) (... as a place-holder for other code) is, as it would, as far as I know, be exactly the same as just using ....

You can find code like this in the official CPython source. As an example, the Py_DECREF macro:

#define Py_DECREF(op)                                   \
    do {                                                \
        if (_Py_DEC_REFTOTAL  _Py_REF_DEBUG_COMMA       \
        --((PyObject*)(op))->ob_refcnt != 0)            \
            _Py_CHECK_REFCNT(op)                        \
        else                                            \
        _Py_Dealloc((PyObject *)(op));                  \
    } while (0)
link|improve this question

2  
In general it lets you use break or continue to skip the remaining code without using goto or return (returning from the function completely). In your example the purpose is very different -- it forces the user to follow uses of the macro with a ; without causing any compiler warnings. – ildjarn Feb 16 at 18:35
feedback

closed as exact duplicate by Amadan, ildjarn, Georg Fritzsche, BlueRaja - Danny Pflughoeft, Greg Hewgill Feb 16 at 18:37

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

up vote 5 down vote accepted

It makes compiler require ; so the macro looks like a function call:

Py_DECREF(x); // ok
Py_DECREF(x) // error
link|improve this answer
feedback

The code in do will execute at least once, and then execute repeatedly until do is no longer true.

link|improve this answer
5  
You won't have to wait too long for 0 to be "no longer true"... – BlueRaja - Danny Pflughoeft Feb 16 at 18:35
Yeah the sample code is bizarre — and in this case the loop block appears logically pointless. But the principle is simple. – Barney Feb 16 at 18:42
Ah — Just read the execution details, yeah there's some sense in there… – Barney Feb 16 at 18:44
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.