__attribute__((constructor)) and __attribute__((destructor)) syntaxes in C - GeeksforGeeks

Write two functions in C using GCC compiler, one of which executes before main function and other executes after the main function.


GCC specific syntaxes :

1. __attribute__((constructor)) syntax : This particular GCC syntax, when used with a function, executes the same function at the startup of the program, i.e before main() function.

2. __attribute__((destructor)) syntax : This particular GCC syntax, when used with a function, executes the same function just before the program terminates through _exit, i.e after main() function.

Explanation :
The way constructors and destructors work is that the shared object file contains special sections (.ctors and .dtors on ELF) which contain references to the functions marked with the constructor and destructor attributes, respectively. When the library is loaded/unloaded, the dynamic loader program checks whether such sections exist, and if so, calls the functions referenced therein.

Few points regarding these are worth noting :
1. __attribute__((constructor)) runs when a shared library is loaded, typically during program startup.
2. __attribute__((destructor)) runs when the shared library is unloaded, typically at program exit.
3. The two parentheses are presumably to distinguish them from function calls.
4. __attribute__ is a GCC specific syntax;not a function or a macro.

Driver code :

edit

link

#include<stdio.h>

  

void __attribute__((constructor)) calledFirst();

void __attribute__((destructor)) calledLast();

  

void main()

{

    printf("\nI am in main");

}

  

void calledFirst()

{

    printf("\nI am called first");

}

  

void calledLast()

{

    printf("\nI am called last");

}


Output:

I am called first
I am in main
I am called last

This article is contributed by Rishav Raj. If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.

Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.





Article Tags :


1

Please write to us at contribute@geeksforgeeks.org to report any issue with the above content.