- 25 May, 2016 3 commits
-
-
Dominik Charousset authored
-
Dominik Charousset authored
-
Dominik Charousset authored
-
- 24 May, 2016 6 commits
-
-
Dominik Charousset authored
-
Dominik Charousset authored
-
Dominik Charousset authored
-
Dominik Charousset authored
-
Dominik Charousset authored
-
Dominik Charousset authored
CAF now assumes handle types (actor_addr, actor, typed_actor<...>) to be non-null. Actors can break this assumption by constructing handles with `unsafe_actor_handle_init`, but any attempt to use such a handle causes undefined behavior. This gives handles reference-like semantics, as opposed to pointer-like semantics. Relates #461.
-
- 20 May, 2016 6 commits
-
-
Dominik Charousset authored
-
Dominik Charousset authored
-
Dominik Charousset authored
-
Dominik Charousset authored
-
Dominik Charousset authored
-
Dominik Charousset authored
-
- 19 May, 2016 1 commit
-
-
DePizzottri authored
-
- 11 May, 2016 4 commits
-
-
Matthias Vallentin authored
A common use case involves creating a response promise, doing some work, and then finalizing it followed by returning from the function: auto rp = make_response_promise(); // do work rp.deliver(..); return rp; The last two statements can now be written more idiomatically: return rp.deliver(..);
-
Matthias Vallentin authored
-
Matthias Vallentin authored
-
Dominik Charousset authored
Fix compilation errors when enabling log
-
- 10 May, 2016 3 commits
-
-
Matthias Vallentin authored
-
Matthias Vallentin authored
The function basic_streambuf::in_avail() only returns the number of bytes *currently* available in the get area. Since we're dealing with a theoretically unbounded stream, the get area will be reused continuously, and in_avail() only represents a snapshot in time. Instead, we now check whether we got the amount of bytes we needed. This allows the streambuffer to call underflow() internally to replenish its get area.
-
ufownl authored
-
- 09 May, 2016 1 commit
-
-
Dominik Charousset authored
-
- 06 May, 2016 2 commits
-
-
Dominik Charousset authored
-
Dominik Charousset authored
-
- 04 May, 2016 3 commits
-
-
Dominik Charousset authored
-
Dominik Charousset authored
-
Dominik Charousset authored
-
- 02 May, 2016 1 commit
-
-
Dominik Charousset authored
-
- 29 Apr, 2016 8 commits
-
-
Dominik Charousset authored
-
Dominik Charousset authored
-
Dominik Charousset authored
-
Dominik Charousset authored
-
Dominik Charousset authored
-
Dominik Charousset authored
-
Dominik Charousset authored
-
Dominik Charousset authored
-
- 27 Apr, 2016 2 commits
-
-
Dominik Charousset authored
-
Dominik Charousset authored
-