diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-08-25 13:50:35 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-08-25 13:50:35 +0400 |
commit | b8c51743357c4bc1fc5067dc0bd5e8992310c93d (patch) | |
tree | 107b63862fa9ed007f5b52ac318bde810b921a6e /src/controller.c | |
parent | c902ecdf5a000d02884dbcd811e7f97b5477ad9f (diff) | |
download | rspamd-b8c51743357c4bc1fc5067dc0bd5e8992310c93d.tar.gz rspamd-b8c51743357c4bc1fc5067dc0bd5e8992310c93d.zip |
* Improve google perf tools support
* Pass to event_add only copies of struct timeval to avoid timing problems
Diffstat (limited to 'src/controller.c')
-rw-r--r-- | src/controller.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/controller.c b/src/controller.c index 65434c974..4196e16f0 100644 --- a/src/controller.c +++ b/src/controller.c @@ -627,8 +627,9 @@ start_controller (struct rspamd_worker *worker) /* Send SIGUSR2 to parent */ kill (getppid (), SIGUSR2); - + gperf_profiler_init (worker->srv->cfg, "controller"); + event_loop (0); exit (EXIT_SUCCESS); |