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: avi.bahra@… Owned by: viboes
Milestone: Boost 1.52.0 Component: thread
Version: Boost 1.51.0 Severity: Showstopper
Keywords: HPUX Cc:

Description (last modified by viboes)

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 viboes, 10 years ago

Status: newassigned
Version: Boost 1.52.0Boost 1.51.0

comment:2 by viboes, 10 years ago

Description: modified (diff)

comment:3 by viboes, 10 years ago

Milestone: To Be DeterminedBoost 1.52.0

Committed in trunk revision [80439].

comment:4 by viboes, 10 years ago

Component: chronothread

comment:5 by viboes, 10 years ago

Resolution: fixed
Status: assignedclosed

Merged to release [80450]

Note: See TracTickets for help on using tickets.