commit 3d9e2b89bef5d57c0845cb1965f7d162bd7209f0
parent afb10e1d9e08569a9c511f287e5a1df4cbb1dba0
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date: Sat, 11 Jun 2016 16:31:33 +0200
addressing #4572
Diffstat:
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/src/benchmark/taler-exchange-benchmark.c b/src/benchmark/taler-exchange-benchmark.c
@@ -174,6 +174,12 @@ struct Coin {
};
+
+/**
+ * Handle to the exchange's process
+ */
+static struct GNUNET_OS_Process *exchanged;
+
/**
* Context for running the #ctx's event loop.
*/
@@ -929,6 +935,7 @@ do_shutdown (void *cls)
}
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
"All (?) tasks shut down\n");
+ GNUNET_OS_process_kill (exchanged, SIGTERM);
}
@@ -1020,7 +1027,6 @@ main (int argc,
#ifdef RUNXCG
struct GNUNET_OS_Process *proc;
- struct GNUNET_OS_Process *exchanged;
unsigned int cnt;
#endif