A co-worker asked me to explain a bit of C code in memcached. I am at the point where I admit I do not understand it either.

It has to do with C function-like macro definitions with parameters that do not also have a replacement list. For example, starting at line 2751 in memcached.c:

            if (return_cas)
            {
              MEMCACHED_COMMAND_GET(c->sfd, ITEM_key(it), it->nkey,
                                    it->nbytes, ITEM_get_cas(it));
              /* Goofy mid-flight realloc. */
              if (i >= c->suffixsize) {
                char **new_suffix_list = realloc(c->suffixlist,
                                       sizeof(char *) * c->suffixsize * 2);
                if (new_suffix_list) {
                    c->suffixsize *= 2;
                    c->suffixlist  = new_suffix_list;

MEMCACHED_COMMAND_GET() is defined on line 23 in trace.h:

#define MEMCACHED_COMMAND_GET(arg0, arg1, arg2, arg3, arg4)

C macro function-like definition with arguments, ok. No replacement list.

The output of cpp on memcached.c shows the function-like macro turns into ';':

# 2751 "memcached.c"
            if (return_cas)
            {
              ;


              if (i >= c->suffixsize) {
                char **new_suffix_list = realloc(c->suffixlist,
                                       sizeof(char *) * c->suffixsize * 2);
                if (new_suffix_list) {
                    c->suffixsize *= 2;
                    c->suffixlist = new_suffix_list;

Does anyone have any insight into why a programmer would include function-like macros without a replacement list like MEMCACHED_COMMAND_GET() that have no effect on the code produced? What purpose is being served by doing doing this? Thank you kindly in advance.

link|improve this question
1  
You may want to look at this question: stackoverflow.com/questions/5501990/… – Jason Feb 16 at 16:37
@Jason Excellent, thank you. That makes sense. I never thought to search on MEMCACHED_COMMAND_GET itself, only search terms that included "function-like macros". I appreciate your pointing me in the right direction. – David Pointer Feb 16 at 16:44
feedback

2 Answers

up vote 1 down vote accepted

On Solaris and Mac OSX it's replaced to triggering a DTrace probe so it expands to something else.

link|improve this answer
It looks like maybe memcached_dtrace.h which has those expansions is created from memcached_dtrace.d only if ENABLE_DTRACE is defined. Clever, clever. The lack of a memcached_dtrace.h file on my Ubuntu system had me fooled. Thanks! – David Pointer Feb 16 at 17:02
1  
You're welcome (after all I was the one who added it ;-)) – trondn Feb 16 at 17:17
feedback

It might have to do with portability issues: a piece of code which, for example, is relevant on BSD, but not on Linux. Or vice versa.

I cannot tell about the concrete situation here, but that might be a reason.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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