I am writing an application in C which used a global variable (a logfile structure). In my application I am loading shared libraries dynamically at runtime and I want to use a global variable pointing at the the same logfile structure to do logging in the shared library.
This doesn't seem to be possible in the easy approach:
- declaring the global variable as extern will not work because dlopen() sais that the global variable is an undefined symbol
- defining the global variable again will work but the "new" variable will not be the same as the "original" one in the executable
Any hint how to fix this would be great.
Thank you!