[mod_fastcgi]: remove unused var "last_used"

git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2772 152afb58-edef-0310-8abb-c4023f1b3aa9
svn/tags/lighttpd-1.4.29
Stefan Bühler 2010-12-10 17:38:50 +00:00
parent cf719ec5b8
commit 955fd0d08f
1 changed files with 0 additions and 3 deletions

View File

@ -80,7 +80,6 @@ typedef struct fcgi_proc {
size_t load; /* number of requests waiting on this process */
time_t last_used; /* see idle_timeout */
size_t requests; /* see max_requests */
struct fcgi_proc *prev, *next; /* see first */
@ -1132,7 +1131,6 @@ static int fcgi_spawn_connection(server *srv,
/* register process */
proc->pid = child;
proc->last_used = srv->cur_ts;
proc->is_local = 1;
break;
@ -3047,7 +3045,6 @@ static handler_t fcgi_write_request(server *srv, handler_ctx *hctx) {
/* ok, we have the connection */
fcgi_proc_load_inc(srv, hctx);
hctx->proc->last_used = srv->cur_ts;
hctx->got_proc = 1;
status_counter_inc(srv, CONST_STR_LEN("fastcgi.requests"));