Opened 11 years ago
Closed 11 years ago
#5831 closed Support Requests (invalid)
condition.cpp: enter_wait(), do_wait(), do_timed_wait() swallows errors from WaitForSingleObject
Reported by: | Owned by: | viboes | |
---|---|---|---|
Milestone: | To Be Determined | Component: | thread |
Version: | Boost 1.47.0 | Severity: | Problem |
Keywords: | Cc: | noloader@…, viboes |
Description
enter_wait(), do_wait(), do_timed_wait() silently swallows errors from WaitForSingleObject.
Also see Ticket 5826 and friends.
Change History (5)
comment:1 by , 11 years ago
Component: | None → thread |
---|---|
Owner: | set to |
comment:2 by , 11 years ago
Cc: | added |
---|
comment:3 by , 11 years ago
Type: | Bugs → Support Requests |
---|
Sorry, I don't see any file libs/thread/src/condition.cpp. Moved to support request until concerned file clarified.
comment:4 by , 11 years ago
Cc: | added |
---|---|
Owner: | changed from | to
Status: | new → assigned |
comment:5 by , 11 years ago
Resolution: | → invalid |
---|---|
Status: | assigned → closed |
Closed as it seems this doesn't corresponds to the current Boost.Thread implementation.
Note:
See TracTickets
for help on using tickets.
assert(res == WAIT_OBJECT_0)
might be too tight -assert(res == WAIT_OBJECT_0 || res == WAIT_ABANDONED_0)
might be a better choice.