Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
pistache
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
pistache
Commits
cd8a771d
Unverified
Commit
cd8a771d
authored
Nov 20, 2018
by
Dennis Jenkins
Committed by
GitHub
Nov 20, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #358 from knowledge4igor/fix_interface_and_several_warnings
Fix interface and several warnings
parents
e40105fc
d0afe3bc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
include/pistache/reactor.h
include/pistache/reactor.h
+4
-4
No files found.
include/pistache/reactor.h
View file @
cd8a771d
...
...
@@ -116,7 +116,7 @@ public:
}
private:
Key
(
uint64_t
data
);
explicit
Key
(
uint64_t
data
);
uint64_t
data_
;
};
...
...
@@ -134,7 +134,7 @@ public:
const
Key
&
key
,
Fd
fd
,
Polling
::
NotifyOn
interest
,
Polling
::
Tag
tag
,
Polling
::
Mode
mode
=
Polling
::
Mode
::
Level
);
void
registerFdOneShot
(
const
Key
&
key
,
Fd
fd
,
Polling
::
NotifyOn
interes
e
t
,
Polling
::
Tag
tag
,
const
Key
&
key
,
Fd
fd
,
Polling
::
NotifyOn
interest
,
Polling
::
Tag
tag
,
Polling
::
Mode
mode
=
Polling
::
Mode
::
Level
);
void
registerFd
(
...
...
@@ -176,7 +176,7 @@ public:
class
AsyncContext
:
public
ExecutionContext
{
public:
AsyncContext
(
size_t
threads
)
explicit
AsyncContext
(
size_t
threads
)
:
threads_
(
threads
)
{
}
...
...
@@ -216,7 +216,7 @@ public:
};
virtual
void
onReady
(
const
FdSet
&
fds
)
=
0
;
virtual
void
registerPoller
(
Polling
::
Epoll
&
/*poller*/
)
{
}
virtual
void
registerPoller
(
Polling
::
Epoll
&
poller
)
=
0
;
Reactor
*
reactor
()
const
{
return
reactor_
;
...
...
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