#include #include #include void helloworld(const char* who) { std::cout << who << "says, \"Hello World.\"" << std::endl; } int main() { boost::thread thrd(boost::bind(&helloworld, "Bob")); thrd.join(); }