I was looking at some PETSc example code, and I came across this snippet:

#undef __FUNCT__
#define __FUNCT__ "main"

right before main begins.

Is setting __FUNCT__ or something like it before every function (or just main?) a standard C programming convention?

If so, why is this done?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

This appears to be shorthand or a work-around for a C compiler that doesn't support the __FUNCTION__ standard macro.

link|improve this answer
What does the __FUNCTION__ standard macro do? Does it just contain the name of the current function? – Dan Jan 14 at 0:51
1  
@Dan Yes, the __FUNCTION__ macro is automatically set by the compiler to the name of the function in which the macro is invoked. It makes it very simple to write trace output and debugging statements. – hypercode Jan 14 at 0:54
__FUNCTION__ is neither a macro nor is it standard - it can't be a macro as the preprocessor knows nothing about language semantics; C99 introduced a predefined identifier called __func__ which does what hypercode described... – Christoph Jan 14 at 9:43
1  
@Christoph Yes, technically you're correct. The mainstream compilers (VC++, GNU, etc) all call it a "macro" even though its a "magic" string constant. See the GNU docs: gcc.gnu.org/onlinedocs/cpp/Standard-Predefined-Macros.html – hypercode Jan 15 at 4:40
feedback

Looking at petsc.h, there appear to be a bunch of macros which pass __FUNCT__ as a parameter to a function, e.g.:

#define PetscFree(a)   ((a) ? ((*PetscTrFree)((a),__LINE__,__FUNCT__,__FILE__,__SDIR__) || ((a = 0),0)) : 0)

My guess is that PetscTrFree() (etc.) take these arguments for debugging/logging purposes.

link|improve this answer
feedback

First all previous declaration of __FUNCT__ are ignored by the compile using #undef, next the identifier is declared again and set to the string "main" in the line #define __FUNCT__ "main"

Personally I've never seen anyone do this setting it to "main", I can see it being useful if you want to use a library or something but don't want to use their declared function name of course I don't know why you would make this an identifier instead of just creating another function taking the same parameters and calling it what ever you want.

In any case, I do not believe this is a standar C programming convention and from the limited code snippet it is not clear exactly what it is being used for or why it is done.

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.