1. 25 Oct, 2014 1 commit
  2. 24 Oct, 2014 1 commit
  3. 23 Oct, 2014 1 commit
  4. 20 Oct, 2014 1 commit
  5. 17 Oct, 2014 1 commit
  6. 11 Oct, 2014 1 commit
  7. 16 Sep, 2014 2 commits
  8. 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
  9. 01 Jul, 2014 1 commit
  10. 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
  11. 13 May, 2014 2 commits
  12. 12 May, 2014 3 commits
  13. 01 Apr, 2014 1 commit
  14. 22 Dec, 2013 1 commit
  15. 06 Dec, 2013 1 commit
  16. 05 Dec, 2013 1 commit
  17. 26 Nov, 2013 2 commits
  18. 25 Nov, 2013 2 commits
  19. 23 Nov, 2013 1 commit
  20. 14 Nov, 2013 2 commits
  21. 08 Nov, 2013 1 commit
  22. 31 Oct, 2013 1 commit
  23. 15 Oct, 2013 1 commit
  24. 12 Oct, 2013 1 commit
  25. 02 Oct, 2013 1 commit
  26. 29 Sep, 2013 1 commit
  27. 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
  28. 27 Aug, 2013 1 commit
  29. 25 Aug, 2013 1 commit
  30. 22 Aug, 2013 2 commits
  31. 21 Aug, 2013 1 commit
  32. 16 Aug, 2013 1 commit