So I casted boost::lexical_cast<std::string>(boost::this_thread::get_id()) this thread id to string. Now I wonder is it possible to turn it back into thread::id?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||||
|
|
Since you mentioned calling ->interrupt I assume you need the boost::thread object, not the boost::thread:id object. Your best option might be to create a mapping of string - boost::thread objects when spawning threads. |
|||
|
|
|
I think you can use 'boost::lexical_cast' to cast a string to a int/short/the_type_you_want. It would look like this :
|
|||
|
|