1. 26 May, 2017 1 commit
    • Kenton Varda's avatar
      Restore workaround for GCC 4.9.2. · d624d56e
      Kenton Varda authored
      This work-around had been removed in 75c7aaee.
      
      However, it turns out that many Debian Jessie systems still use 4.9.2 (not 4.9.4, which is fixed).
      
      I've changed the #if to more specifically target 4.9.x, which should cover all affected versions (in addition to some fixed versions).
      d624d56e
  2. 25 Apr, 2017 1 commit
  3. 11 Apr, 2017 1 commit
  4. 24 Jan, 2017 1 commit
    • Harris Hancock's avatar
      MSVC non-const copy capture workaround · f87b3068
      Harris Hancock authored
      MSVC refuses the following code:
      
      struct Foo { Foo(Foo&) {} };
      Foo foo;
      [foo] {}();
      
      because it only seems to want to consider const copy constructors when
      capturing objects by value in lambda capture lists.
      f87b3068
  5. 20 Jun, 2016 1 commit
  6. 07 May, 2015 1 commit
  7. 04 Apr, 2015 1 commit
  8. 23 Mar, 2015 1 commit
  9. 22 Mar, 2015 2 commits
  10. 15 Mar, 2015 2 commits
  11. 30 Dec, 2014 1 commit
  12. 29 Nov, 2014 1 commit
  13. 25 Oct, 2014 1 commit
  14. 23 Oct, 2014 1 commit
  15. 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
  16. 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
  17. 07 Apr, 2014 1 commit
  18. 01 Apr, 2014 1 commit
  19. 10 Dec, 2013 1 commit
  20. 07 Dec, 2013 1 commit
  21. 06 Dec, 2013 1 commit
  22. 05 Dec, 2013 4 commits
  23. 04 Dec, 2013 1 commit
  24. 02 Dec, 2013 1 commit
  25. 30 Nov, 2013 1 commit
  26. 28 Nov, 2013 1 commit
    • Kenton Varda's avatar
      Revamp concurrency model, part 1: EventLoop no longer allows cross-thread event… · 7921c854
      Kenton Varda authored
      Revamp concurrency model, part 1:  EventLoop no longer allows cross-thread event queuing, simplifying many things.  Capability clients are no longer thread-safe, so they don't have to be so const.  In the future, explicit ways to communicate between threads will be re-added, but threads will be treated more like separate vats that just happen to have a particularly fat pipe.  Upcoming:  Remove mutexes.
      7921c854
  27. 26 Nov, 2013 1 commit
  28. 23 Nov, 2013 1 commit
  29. 12 Nov, 2013 1 commit
  30. 08 Nov, 2013 1 commit
  31. 15 Oct, 2013 1 commit
  32. 12 Oct, 2013 1 commit
  33. 11 Oct, 2013 1 commit