1. 22 Mar, 2015 1 commit
  2. 29 Jan, 2015 1 commit
  3. 09 Jan, 2015 1 commit
  4. 04 Nov, 2014 1 commit
  5. 25 Oct, 2014 1 commit
  6. 24 Oct, 2014 1 commit
  7. 23 Oct, 2014 1 commit
  8. 20 Oct, 2014 1 commit
  9. 17 Oct, 2014 1 commit
  10. 11 Oct, 2014 1 commit
  11. 16 Sep, 2014 2 commits
  12. 11 Sep, 2014 1 commit
    • Kenton Varda's avatar
      Fix obscure bug where the last outgoing message (and any capabilities therein)… · 26914900
      Kenton Varda authored
      Fix obscure bug where the last outgoing message (and any capabilities therein) would not get released (until a new message was sent, replacing it as the last).
      
      This took hours to track down, because it initially looked like "Release" messages weren't being honored in some cases (when they happened to be releasing a capability from the last message, and no subsequent messages were sent). Initial attempts to capture this in a unit test failed because the test of course used a subsequent call to detect if the capability had been released, which succeeded.
      26914900
  13. 01 Jul, 2014 1 commit
  14. 20 Jun, 2014 1 commit
    • Kenton Varda's avatar
      Change license to MIT. · 889204fe
      Kenton Varda authored
      For portions currently copyright by Kenton (most of it), transfer copyright to Sandstorm Development Group, Inc. (Kenton's company).
      
      The license change is practically meaningless, as MIT and BSD 2-clause are legally equivalent. However, the BSD 2-clause license is sometimes confused for its ugly siblings, BSD 3-clause and BSD 4-clause. The MIT license is more immediately recognizeable for what it is.
      
      Rémy Blank and Jason Choy (the two non-trivial contributors) are on record as approving this change:
      
      https://groups.google.com/d/msg/capnproto/xXDd2HUOCcc/gbe_COIuXKYJ
      889204fe
  15. 13 May, 2014 2 commits
  16. 12 May, 2014 3 commits
  17. 01 Apr, 2014 1 commit
  18. 22 Dec, 2013 1 commit
  19. 06 Dec, 2013 1 commit
  20. 05 Dec, 2013 1 commit
  21. 26 Nov, 2013 2 commits
  22. 25 Nov, 2013 2 commits
  23. 23 Nov, 2013 1 commit
  24. 14 Nov, 2013 2 commits
  25. 08 Nov, 2013 1 commit
  26. 31 Oct, 2013 1 commit
  27. 15 Oct, 2013 1 commit
  28. 12 Oct, 2013 1 commit
  29. 02 Oct, 2013 1 commit
  30. 29 Sep, 2013 1 commit
  31. 31 Aug, 2013 1 commit
    • Kenton Varda's avatar
      Actually fix the bug, which was a doozy: OrphanBuilder::tag was sometimes… · a5bb798d
      Kenton Varda authored
      Actually fix the bug, which was a doozy:  OrphanBuilder::tag was sometimes initialized using WirePointer::setKindAndTarget(), but since the tag didn't live inside the target segment, this used illegal pointer arithmetic.  The target is never read from an orphan tag anyway, so I thought it would be no big deal.  But it turns out Clang actually optimizes under the assumption that pointer arithmetic returns a whole value.  As a result, on 32-bit system where 64-bit values are only 32-bit aligned, the tag and target might not have been a whole number of words apart, and the extra bit actually found its way into the 'kind' bits, causing e.g. a struct pointer to become an invalid far pointer.  Crash.  The fix required refactoring to ensure that setKindAndOffset() is never used for orphan tags.
      a5bb798d
  32. 27 Aug, 2013 1 commit
  33. 25 Aug, 2013 1 commit