Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can we know the caller function's name?

Tags:

c

In the C language, __FUNCTION__ can be used to get the current function's name. But if I define a function named a() and it is called in b(), like below:

b() {     a(); } 

Now, in the source code, there are lots of functions like b() that call a(), e.g. c(), d(), e()...

Is it possible, within a(), to add some code to detect the name of the function that called a()?

Further:

  1. Sorry for the misleading typo. I have corrected it.
  2. I am trying to find out which function calls a() for debugging purposes. I don't know how you do when in the same situation?
  3. And my code is under vxWorks, but I am not sure whether it is related to C99 or something else.
like image 917
Tom Xue Avatar asked Apr 19 '13 08:04

Tom Xue


People also ask

What is a function caller?

Description. A Function Caller block calls and executes a function defined with a Simulink Function block or an exported Stateflow® function. Using Function Caller blocks, you can call a function from anywhere in a model or chart hierarchy.

How will you identify a calling function and a called function?

The calling function supplies the input (the actual arguments), which are then used by the called function to process the parameters because it has the definition, carry out the instructions, and return whatever that should be returned. The function that another function calls is known as the called function.

What is the caller in C?

The C Caller supports code generation. In the code generated from your model, each execution of a C Caller block corresponds to a call to the external C function associated with the block.


Video Answer


2 Answers

There's nothing you can do only in a.

However, with a simple standard macro trick, you can achieve what you want, IIUC showing the name of the caller.

void a() {     /* Your code */ }  void a_special( char const * caller_name ) {     printf( "a was called from %s", caller_name );     a(); }  #define a() a_special(__func__)  void b() {     a(); } 
like image 121
Didier Trosset Avatar answered Oct 04 '22 17:10

Didier Trosset


You can do it with a gcc builtin.

void * __builtin_return_address(int level)

The following way should print the immediate caller of a function a().

Example:

a() {     printf ("Caller name: %pS\n", __builtin_return_address(0)); } 
like image 29
Vicky Avatar answered Oct 04 '22 19:10

Vicky