Index: pthread/thread_data.hpp =================================================================== --- pthread/thread_data.hpp (revision 61022) +++ pthread/thread_data.hpp (working copy) @@ -79,11 +79,13 @@ void check_for_interruption() { +#ifndef BOOST_NO_EXCEPTIONS if(thread_info->interrupt_requested) { thread_info->interrupt_requested=false; throw thread_interrupted(); } +#endif } void operator=(interruption_checker&);