[MINOR] support a global jobs counter

This counter is incremented for each incoming connection and each active
listener, and is used to prevent haproxy from stopping upon SIGUSR1. It
will thus be possible for some tasks in increment this counter in order
to prevent haproxy from dying until they have completed their job.
diff --git a/src/cfgparse.c b/src/cfgparse.c
index 258942e..14171ce 100644
--- a/src/cfgparse.c
+++ b/src/cfgparse.c
@@ -267,6 +267,7 @@
 				tcpv4_add_listener(l);
 			}
 
+			jobs++;
 			listeners++;
 		} /* end for(port) */
 	} /* end while(next) */