Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
varnish-cache
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
varnishcache
varnish-cache
Commits
757aef1f
Commit
757aef1f
authored
Jan 27, 2015
by
Poul-Henning Kamp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Re-enable the epoll waiter
parent
ec5a9a3d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
cache_waiter_epoll.c
bin/varnishd/waiter/cache_waiter_epoll.c
+2
-1
mgt_waiter.c
bin/varnishd/waiter/mgt_waiter.c
+1
-1
No files found.
bin/varnishd/waiter/cache_waiter_epoll.c
View file @
757aef1f
...
...
@@ -154,7 +154,8 @@ vwe_fini(struct waiter *w)
CAST_OBJ_NOTNULL
(
vwe
,
w
->
priv
,
VWE_MAGIC
);
AZ
(
pthread_join
(
vwe
->
thread
,
&
vp
));
WRONG
(
"Not Yet Implemented"
);
AZ
(
close
(
vwe
->
epfd
));
FREE_OBJ
(
vwe
);
}
/*--------------------------------------------------------------------*/
...
...
bin/varnishd/waiter/mgt_waiter.c
View file @
757aef1f
...
...
@@ -43,7 +43,7 @@ static const struct waiter_impl *const waiter_impls[] = {
&
waiter_kqueue
,
#endif
#if defined(HAVE_EPOLL_CTL)
//
&waiter_epoll,
&
waiter_epoll
,
#endif
#if defined(HAVE_PORT_CREATE)
&
waiter_ports
,
...
...
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