1. 11 Jan, 2018 1 commit
    • Kenton Varda's avatar
      Replace all include guards with #pragma once. · 677a52ab
      Kenton Varda authored
      @kloepper pointed out a while back that every compiler you've ever heard of supports this. Plus, it's more concise, it's not prone to copy-paste errors, and it looks nicer.
      
      At the time I wanted to remain consistent and I didn't feel like spending the time to update all my existing code. But, every time I've added a new header since I've cursed the include guard, so I finally broke down and changed it.
      677a52ab
  2. 11 Dec, 2017 1 commit
    • Kenton Varda's avatar
      Split time.h into time.h and timer.h. · d3278477
      Kenton Varda authored
      timer.h takes the place of the old time.h, while time.h itself has been pared down to only non-async-related stuff.
      
      Since async-io.h includes timer.h, I suspect no one will be broken by this change.
      
      I could have instead moved the non-async parts of time.h into a new header to avoid any possibility of breakage, but time.h is the correct name for the core header, and timer.h is the correct name for the async parts (the Timer class)... so I'm risking it.
      d3278477
  3. 14 Nov, 2017 2 commits
  4. 07 Nov, 2016 2 commits
  5. 02 Oct, 2016 1 commit
  6. 30 Oct, 2015 1 commit
  7. 29 Aug, 2015 1 commit
  8. 20 Apr, 2015 1 commit
  9. 11 Dec, 2014 1 commit
  10. 09 Dec, 2014 1 commit
  11. 06 Dec, 2014 1 commit
  12. 01 Dec, 2014 1 commit
  13. 22 Nov, 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. 01 Apr, 2014 2 commits
  16. 30 Mar, 2014 1 commit
  17. 10 Dec, 2013 1 commit
  18. 07 Dec, 2013 1 commit
  19. 04 Dec, 2013 1 commit
  20. 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
  21. 14 Nov, 2013 1 commit
  22. 03 Nov, 2013 1 commit
  23. 02 Nov, 2013 1 commit