Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
capnproto
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
capnproto
Commits
37920928
Commit
37920928
authored
Jul 19, 2015
by
David Renshaw
Committed by
David Renshaw
Oct 30, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typos.
parent
3adcf4a1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
capability.h
c++/src/capnp/capability.h
+2
-2
async-unix.h
c++/src/kj/async-unix.h
+2
-2
No files found.
c++/src/capnp/capability.h
View file @
37920928
...
@@ -105,7 +105,7 @@ class Request: public Params::Builder {
...
@@ -105,7 +105,7 @@ class Request: public Params::Builder {
// structure with a method send() that actually sends it.
// structure with a method send() that actually sends it.
//
//
// Given a Cap'n Proto method `foo(a :A, b :B): C`, the generated client interface will have
// Given a Cap'n Proto method `foo(a :A, b :B): C`, the generated client interface will have
// a method `Request<FooParams, C>
startFoo
()` (as well as a convenience method
// a method `Request<FooParams, C>
fooRequest
()` (as well as a convenience method
// `RemotePromise<C> foo(A::Reader a, B::Reader b)`).
// `RemotePromise<C> foo(A::Reader a, B::Reader b)`).
public
:
public
:
...
@@ -298,7 +298,7 @@ public:
...
@@ -298,7 +298,7 @@ public:
//
//
// Keep in mind that asynchronous cancellation cannot occur while the method is synchronously
// Keep in mind that asynchronous cancellation cannot occur while the method is synchronously
// executing on a local thread. The method must perform an asynchronous operation or call
// executing on a local thread. The method must perform an asynchronous operation or call
// `EventLoop::current().
run
Later()` to yield control.
// `EventLoop::current().
eval
Later()` to yield control.
//
//
// Note: You might think that we should offer `onCancel()` and/or `isCanceled()` methods that
// Note: You might think that we should offer `onCancel()` and/or `isCanceled()` methods that
// provide notification when the caller cancels the request without forcefully killing off the
// provide notification when the caller cancels the request without forcefully killing off the
...
...
c++/src/kj/async-unix.h
View file @
37920928
...
@@ -146,8 +146,8 @@ class UnixEventPort::FdObserver {
...
@@ -146,8 +146,8 @@ class UnixEventPort::FdObserver {
// else, it means that read() (or recv()) will return data.
// else, it means that read() (or recv()) will return data.
//
//
// The presence of out-of-band data should NOT fire this event. However, the event may
// The presence of out-of-band data should NOT fire this event. However, the event may
// occasionally fire spur
r
iously (when there is actually no data to read), and one thing that can
// occasionally fire spuriously (when there is actually no data to read), and one thing that can
// cause such spur
r
ious events is the arrival of OOB data on certain platforms whose event
// cause such spurious events is the arrival of OOB data on certain platforms whose event
// interfaces fail to distinguish between regular and OOB data (e.g. Mac OSX).
// interfaces fail to distinguish between regular and OOB data (e.g. Mac OSX).
//
//
// WARNING: The exact behavior of this class differs across systems, since event interfaces
// WARNING: The exact behavior of this class differs across systems, since event interfaces
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment