Commit 9493c10c authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Add (empty) source file for expiry/pretech code


git-svn-id: http://www.varnish-cache.org/svn/trunk@221 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 820a3375
......@@ -7,6 +7,7 @@ bin_PROGRAMS = varnishd
varnishd_SOURCES = \
cache_acceptor.c \
cache_backend.c \
cache_expire.c \
cache_fetch.c \
cache_http.c \
cache_main.c \
......
......@@ -142,6 +142,9 @@ int VBE_GetFd(struct backend *bp, void **ptr);
void VBE_ClosedFd(void *ptr);
void VBE_RecycleFd(void *ptr);
/* cache_expiry.c */
void EXP_Init(void);
/* cache_fetch.c */
int FetchSession(struct worker *w, struct sess *sp);
......
/*
* $Id$
*
* Expiry of cached objects and execution of prefetcher
*/
void
EXP_Init(void)
{
}
......@@ -114,6 +114,7 @@ child_main(void)
CacheInitPool();
VCA_Init();
EXP_Init();
eb = event_init();
assert(eb != NULL);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment