1. 23 Sep, 2016 2 commits
  2. 21 Sep, 2016 3 commits
  3. 14 Sep, 2016 2 commits
  4. 07 Sep, 2016 4 commits
  5. 06 Sep, 2016 2 commits
  6. 01 Sep, 2016 8 commits
  7. 30 Aug, 2016 5 commits
  8. 29 Aug, 2016 1 commit
  9. 26 Aug, 2016 4 commits
  10. 24 Aug, 2016 3 commits
  11. 23 Aug, 2016 1 commit
  12. 18 Aug, 2016 1 commit
  13. 22 Aug, 2016 4 commits
    • Multiple threads could access the field, lastSink, then they should read
      the latest value of lastSink
      
      Change-Id: I279ed6fa3db357008603cde5cb2c57671e66b33c
      Sho SHIMIZU authored
    • The field, dispatchFuture, is accessed in activate() method and the thread
      where Watchdog is running. Then, different threads could access the field
      and couldn't read the latest value.
      
      Change-Id: Iceb390bcf3c5711c1dbb59198667138c8a90b036
      Sho SHIMIZU authored
    • The field, dispatchLoop, is accessed in activate() method and the thread
      where Watchdog is running. Then, different threads could access the field
      and could miss the latest value.
      
      Change-Id: Id218522f5b318fb3d05833ba57d908a1bf6d2949
      Sho SHIMIZU authored
    • The field, lastStart, is read/written from different thread pools.
      As a result, the field could be accessed from different threads.
      
      Change-Id: Ia50c5bd3405bf2af98abb9d14f7e35d840f62483
      Sho SHIMIZU authored