]> err.no Git - varnish/commitdiff
remove the undocumented and unimplemented dump.pool command
authorphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Fri, 15 Feb 2008 10:01:19 +0000 (10:01 +0000)
committerphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Fri, 15 Feb 2008 10:01:19 +0000 (10:01 +0000)
git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@2467 d4fa192b-c00b-0410-8231-f00ffab90ce4

varnish-cache/bin/varnishd/cache_cli.c
varnish-cache/bin/varnishd/cache_pool.c

index 12762920bd30c3f6884199ea5197235be112e5f0..9f8d5b080a4d1fce4c3e96fd95233a279fd2322a 100644 (file)
@@ -77,10 +77,6 @@ struct cli_proto CLI_cmds[] = {
        { CLI_VCL_DISCARD,      cli_func_config_discard },
        { CLI_VCL_USE,          cli_func_config_use },
 
-       /* Undocumented */
-       { "dump.pool", "dump.pool",
-           "\tDump the worker thread pool state\n",
-           0, 0, cli_func_dump_pool },
        { NULL }
 };
 
index 2e569c5788a80bf0333fd518adb4b437c49c3633..44559d5ebf1c202f8408f71296b2f4940a163395 100644 (file)
@@ -434,14 +434,3 @@ WRK_Init(void)
        AZ(pthread_create(&tp, NULL, wrk_reaperthread, NULL));
        AZ(pthread_detach(tp));
 }
-
-/*--------------------------------------------------------------------*/
-
-void
-cli_func_dump_pool(struct cli *cli, const char * const *av, void *priv)
-{
-
-       (void)cli;
-       (void)av;
-       (void)priv;
-}