Opened 10 years ago
Closed 10 years ago
#6845 closed Support Requests (worksforme)
boost::thread,thread_group
Reported by: | Owned by: | viboes | |
---|---|---|---|
Milestone: | To Be Determined | Component: | thread |
Version: | Boost 1.49.0 | Severity: | Problem |
Keywords: | thread | Cc: |
Description
void remove_thread(thread* thrd)
{
boost::lock_guard<shared_mutex> guard(m); std::list<thread*>::iterator const it=std::find(threads.begin(),threads.end(),thrd); if(it!=threads.end()) {
delete *it;???
threads.erase(it);
}
}
Change History (4)
comment:1 by , 10 years ago
Type: | Bugs → Support Requests |
---|
comment:2 by , 10 years ago
Milestone: | Boost 1.49.0 → To Be Determined |
---|
comment:3 by , 10 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:4 by , 10 years ago
Resolution: | → worksforme |
---|---|
Status: | assigned → closed |
Please reopen once it is clarified what is not working.
Note:
See TracTickets
for help on using tickets.
Please, could you clarify the issue?