#include //#include //#include #include static void thread_handler( int unused) { printf("Hello from thread_handler(%d)", unused); } extern "C" void some_exports() { printf("Hello from %s", __FUNCTION__); //boost::thread t(boost::bind(&thread_handler, 0)); //t.join(); }