commit 63612f4976d34d259f28ca5f92ee1a922268ea7b
parent 2886187a023105488fff8726872279e44d8d82b4
Author: Christian Grothoff <christian@grothoff.org>
Date: Sat, 11 Jun 2016 16:47:25 +0200
Merge branch 'master' of git+ssh://taler.net/var/git/exchange
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