Opened 10 years ago
Closed 10 years ago
#7657 closed Bugs (fixed)
Serious performance and memory consumption hit if condition_variable methods condition notify_one or notify_all is used repeatedly
Reported by: | Owned by: | viboes | |
---|---|---|---|
Milestone: | Boost 1.53.0 | Component: | thread |
Version: | Boost 1.52.0 | Severity: | Showstopper |
Keywords: | Cc: |
Description
platform: Win32, MSVS11
condition_variable::generations member contains list of basic_cv_list_entry instances. As notify_one or notify_all is called, each instance member release is called, setting basic_cv_list_entry::notified member to true. There is no code which set basic_cv_list_entry::notified to false again, so the entry stays notified forever.
Items from condition_variable::generations are deleted only when there are no waiters for the entry. The waiters are removed in entry_manager::~entry_manager. New addition to 1.52 version is that waiter is removed only if the entry is not notified (line 198 thread/win32/condition_variable.hpp). As result, new entries are added for every get_wait_entry() call, which means for every wait call (as waiter can be added only to unnotified entry, which is the same story all over again), condition_variable::generations vector grows infinitely, consuming memory and processor time for useless searches for entries that could be removed.
Change History (7)
comment:1 by , 10 years ago
comment:2 by , 10 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:3 by , 10 years ago
Hi, I added this patch to solve #7461, but unfortunately it introduces a regression. I will rollback it and then take the time to analyze what is happening.
Thanks for the report.
comment:5 by , 10 years ago
Milestone: | To Be Determined → Boost 1.53.0 |
---|
comment:6 by , 10 years ago
Summary: | Serious performance and memory consuption hit if condition_variable methods condition notify_one or notify_all is used repeatedly → Serious performance and memory consumption hit if condition_variable methods condition notify_one or notify_all is used repeatedly |
---|
comment:7 by , 10 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Committed revision [81667].
proposed patch: remove if(! entry->is_notified()) condition from ~entry_manager()