Hi all,
currently i try to understand boost asio a little better. Right now, i
just had a very simple asio program and started 2 timers asyncronously.
i expected the timer t to complete after the timer i.
//-------<-----------------
Current output:
10 s.
1 s.
//-------<-----------------
Expected output:
1 s.
10 s.
//-------<-----------------
Shouldn't complete the async_wait with 1 sec complete prior the 10 sec
async_wait?
I am on Windows 7 x64/ MSVC 2013(VS12) / Boost 1.57.0.
Regards
Georg
//-------<-----------------
#include