Opened 10 years ago
Closed 10 years ago
#7329 closed Bugs (fixed)
$BOOST_ROOT/boost/thread/future.hpp does not compile on HPUX
| Reported by: | Owned by: | viboes | |
|---|---|---|---|
| Milestone: | Boost 1.52.0 | Component: | thread |
| Version: | Boost 1.51.0 | Severity: | Showstopper |
| Keywords: | HPUX | Cc: |
Description (last modified by )
Using compiler: aCC: HP C/aC++ B3910B A.06.20 [May 13 2008]
$BOOST_ROOT/boost/thread/future.hpp
CHANGE:: line:603 FROM
for(count_type i=0;i<count;++i)
{
#if defined __DECCXX || defined __SUNPRO_CC
locks[i]=boost::unique_lock<boost::mutex>(futures[i].future_->mutex).move();
#else
locks[i]=boost::unique_lock<boost::mutex>(futures[i].future_->mutex);
#endif
}
T0:
for(count_type i=0;i<count;++i)
{
#if defined __DECCXX || defined __SUNPRO_CC || defined __hpux
locks[i]=boost::unique_lock<boost::mutex>(futures[i].future_->mutex).move();
#else
locks[i]=boost::unique_lock<boost::mutex>(futures[i].future_->mutex);
#endif
}
Change History (5)
comment:1 by , 10 years ago
| Status: | new → assigned |
|---|---|
| Version: | Boost 1.52.0 → Boost 1.51.0 |
comment:2 by , 10 years ago
| Description: | modified (diff) |
|---|
comment:3 by , 10 years ago
| Milestone: | To Be Determined → Boost 1.52.0 |
|---|
comment:4 by , 10 years ago
| Component: | chrono → thread |
|---|
Note:
See TracTickets
for help on using tickets.

Committed in trunk revision [80439].