Changes between Initial Version and Version 3 of Ticket #9880


Ignore:
Timestamp:
Apr 14, 2014, 5:13:07 PM (9 years ago)
Author:
viboes
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #9880

    • Property Owner set to viboes
    • Property Status newassigned
    • Property Component Nonethread
  • Ticket #9880 – Description

    initial v3  
    66How to fix:
    77boost\thread\win32\thread_data.hpp, line 179 (boost 1.55.0). In constructor
     8
     9{{{
    810            timeout(uintmax_t milliseconds_):
    911                start(win32::GetTickCount64()),
     
    1214                abs_time(boost::get_system_time())
    1315            {}
     16}}}
     17
    1418we set "relative(true)" and there for not need to set variable "abs_time". Must be:
     19
     20{{{
    1521            timeout(uintmax_t milliseconds_):
    1622                start(win32::GetTickCount64()),
     
    1824                relative(true)
    1925            {}
     26}}}