Fixed busy loop: remove marked handler.

This commit is contained in:
Tatsuhiro Tsujikawa 2012-02-16 02:51:46 +09:00
parent 85ec883d11
commit e4ad446261
1 changed files with 4 additions and 0 deletions

View File

@ -922,10 +922,14 @@ int SpdyServer::run()
sessions.mod_poll(hd);
}
}
if(hd->mark_del()) {
del_list.push_back(hd);
}
}
for(std::vector<EventHandler*>::iterator i = del_list.begin(),
eoi = del_list.end(); i != eoi; ++i) {
on_close(sessions, *i);
sessions.remove_handler(*i);
}
del_list.clear();
}