- 18 Apr, 2019 3 commits
-
-
Kenton Varda authored
This is redundant as the destructor already uses a recoverable assertion, which will not throw during unwind. I have long assumed AutoCloseFd wrapped only an integer and was shocked to realize it was more that that...
-
Kenton Varda authored
Fix #800 : pwritev() missing before Android API Level 24.
-
chenqi authored
-
- 15 Apr, 2019 3 commits
-
-
Kenton Varda authored
Update link to @popham plugin
-
Kenton Varda authored
Fix typo
-
AlexDenisov authored
-
- 13 Apr, 2019 1 commit
-
-
Tim Popham authored
-
- 05 Apr, 2019 1 commit
-
-
Kenton Varda authored
Add HttpClient wrapper for limiting concurrent connections
-
- 03 Apr, 2019 1 commit
-
-
Joe Lee authored
-
- 01 Apr, 2019 4 commits
-
-
Kenton Varda authored
Feature grab bag
-
Kenton Varda authored
Not sure how this slipped by for so long!
-
Kenton Varda authored
This class lets you hold a temporary value that is only safe to access under lock, while you release the lock to do some other work.
-
Kenton Varda authored
-
- 29 Mar, 2019 1 commit
-
-
Kenton Varda authored
-
- 21 Mar, 2019 3 commits
-
-
Kenton Varda authored
Jlee/fix mingw warnings
-
Joe Lee authored
-
Kenton Varda authored
http-test: Replace windows-conditional block with extra poll
-
- 20 Mar, 2019 5 commits
- 17 Mar, 2019 1 commit
-
-
Kenton Varda authored
`Maybe<T>(Maybe<T&>&&)` should do a copy, not a move.
-
- 12 Mar, 2019 2 commits
-
-
Kenton Varda authored
`Maybe<T&>` does not own the `T` it points to. But, before this change, initializing a `Maybe<T>` from a `Maybe<T&>` would inadvertently perform a move, stealing the `T` away from its owner.
-
Kenton Varda authored
Fix capnpc extension handling on Windows
-
- 10 Mar, 2019 1 commit
-
-
Thomas Arcila authored
On Windows executables needs to end with .exe. Fix this in CMakeLists.txt and update capnp detection code accordingly.
-
- 08 Mar, 2019 2 commits
-
-
Kenton Varda authored
Fix narrowing conversion
-
Kenton Varda authored
Implement InsertionOrderIndex move constructor/assignment operator
-
- 04 Mar, 2019 1 commit
-
-
Crunkle authored
-
- 27 Feb, 2019 1 commit
-
-
Harris Hancock authored
InsertionOrderIndex manages memory, but it didn't have an explicit move constructor or move assignment operator, causing segmentation faults and double frees.
-
- 19 Feb, 2019 2 commits
-
-
Kenton Varda authored
Fix compile error with Array<const T>.
-
Kenton Varda authored
For trivial types, we already had this const_cast (line 622), but for non-trivial types it was missing.
-
- 12 Feb, 2019 2 commits
-
-
Kenton Varda authored
Update rpc.capnp
-
0xflotus authored
-
- 09 Feb, 2019 2 commits
-
-
Kenton Varda authored
Fix obscure optimization-blocking bug in PromiseIoStream::tryPumpFrom().
-
Kenton Varda authored
I don't have a use case, I was just reading the code and noticed it was wrong.
-
- 05 Feb, 2019 1 commit
-
-
Kenton Varda authored
-
- 04 Feb, 2019 2 commits
-
-
Kenton Varda authored
Fix obscure use-after-free in HttpClientAdapter.
-
Kenton Varda authored
In setPromise() we chain `task` with an error handler that accesses ResponseImpl, so that means `task` needs to attach a reference to RespnoseImpl... ugh.
-
- 23 Jan, 2019 1 commit
-
-
Kenton Varda authored
Typos in comments
-