- added FIXME note about deletion of thread objects in DynamicProcess::remove_thread()

git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@663 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
elvez 2006-06-25 19:54:36 +00:00
parent 409047a225
commit bfe8f3456e
1 changed files with 2 additions and 0 deletions

View File

@ -68,6 +68,8 @@ DynamicProcess::remove_thread(Thread* thread)
if(it != _dynamic_threads.end())
{
_dynamic_threads.erase(it);
// FIXME remove me and leave the responsibility for deletion to the caller
// (which is?)
delete *it;
}