Hi,
I'm trying to obtain symbol names from within a running program using dladdr() (using program counter values). The problem is that dladdr() [ on Solaris 2.6 and 2.8 ] only returns 'global' symbols and not 'local' ones.
I.e.
void globalFn(void) { ... }
static void staticFn(void) { ... }...
From Java I'm considering using a C-library that uses thread pools, mutexes, conditional semaphores and the likes. Using JNI I can access C-functions from Java.
I need to be able to let the threads (from C) callback to the Java code (e.g. when some library-internal event happens, such as...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.