Skip to content

Commit

Permalink
FX-655
Browse files Browse the repository at this point in the history
  • Loading branch information
David Dight committed Aug 31, 2016
1 parent 1ae6c4b commit 5a69237
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 4 additions & 3 deletions ChangeLog
@@ -1,6 +1,6 @@
* Tue Aug 23 2016 David L. Dight <fix@fix8.org> 1.4.0
* Fri Sep 02 2016 David L. Dight <fix@fix8.org> 1.4.0
- Fixed Jira tickets FX-530,FX-533,FX-539,FX-562,FX-563,FX-564,FX-560,FX-588,FX-569,
FX-596,FX-642,FX-633,FX-615,FX-609
FX-596,FX-642,FX-633,FX-615,FX-609,FX-655
- Added verison tag to Nuget packages
- Fixed Seqedit reports corrupted persister index
- Added Provide programmatic way to set reset sequence number flag on logon
Expand All @@ -13,13 +13,14 @@
- Fixed Acceptor mode: Crash while receiving logout message
- Fixed Sequence number reset does not function correctly
- Fixed Expected Sequence number reaches extreme and unrealistic value
- Updated FastFlow to v2.1.0
- Upgraded FastFlow to v2.1.0
- Added ConsoleMenu permit messages to be created from inbound messages
- Added ConsoleMenu SelectMsgFrom now displays message sending time and seqnum if available
- Fixed crash on "Send one message, optionally save before send"
- Fixed f8c unhandled exception while stoul'ing fields
- Fixed login_retries="0" not working
- Fixed Expected Sequence number reaches extreme and unrealistic value
- Fixed Crashes on heartbeat

* Sun Aug 23 2015 David L. Dight <fix@fix8.org> 1.3.4
- Fixed Jira tickets FX-508, FX-511, FX-490, FX-491, FX-480, FX-470, FX-336, FX-525, FX-524,
Expand Down
2 changes: 0 additions & 2 deletions include/fix8/timer.hpp
Expand Up @@ -165,13 +165,11 @@ int Timer<T>::operator()()
{
TimerEvent<T> rop(_event_queue.top()); // take a copy
_event_queue.pop(); // remove from queue
guard.release();
++elapsed;
const bool result((_monitor.*rop._callback)());
if (result && op._repeat) // don't repeat if callback returned false
{
op._t = now.get_ticks() + op._intervalMS * Tickval::million;
guard.acquire(_spin_lock);
_event_queue.push(std::move(op)); // push back on queue
}
}
Expand Down

0 comments on commit 5a69237

Please sign in to comment.