summaryrefslogtreecommitdiff
path: root/src/util/taler-exchange-secmod-rsa.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-03-01 14:08:15 +0100
committerChristian Grothoff <christian@grothoff.org>2021-03-01 14:08:15 +0100
commit2c8afda8b3ead9f63cd004b47365fc831428cf21 (patch)
treef68e76a50c72c44e7c27b6c60b5eca895aa6ec40 /src/util/taler-exchange-secmod-rsa.c
parent15ed6ffb07e2c1b87f08a1b168e76c743a2ae944 (diff)
downloadexchange-2c8afda8b3ead9f63cd004b47365fc831428cf21.tar.gz
exchange-2c8afda8b3ead9f63cd004b47365fc831428cf21.tar.bz2
exchange-2c8afda8b3ead9f63cd004b47365fc831428cf21.zip
remove deadlocking log statements
Diffstat (limited to 'src/util/taler-exchange-secmod-rsa.c')
-rw-r--r--src/util/taler-exchange-secmod-rsa.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/util/taler-exchange-secmod-rsa.c b/src/util/taler-exchange-secmod-rsa.c
index d2e44e703..0a6d797e1 100644
--- a/src/util/taler-exchange-secmod-rsa.c
+++ b/src/util/taler-exchange-secmod-rsa.c
@@ -410,8 +410,6 @@ static void *
sign_worker (void *cls)
{
(void) cls;
- GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
- "Crypto worker launching\n");
GNUNET_assert (0 == pthread_mutex_lock (&work_lock));
while (! in_shutdown)
{
@@ -425,9 +423,6 @@ sign_worker (void *cls)
wi);
work_counter--;
GNUNET_assert (0 == pthread_mutex_unlock (&work_lock));
- GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
- "Processing sign request %p\n",
- wi);
wi->rsa_signature
= GNUNET_CRYPTO_rsa_sign_blinded (wi->dk->denom_priv.rsa_private_key,
wi->blinded_msg,
@@ -454,16 +449,12 @@ sign_worker (void *cls)
if (in_shutdown)
break;
/* queue is empty, wait for work */
- GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
- "Crypto worker waiting for work...\n");
GNUNET_assert (0 ==
pthread_cond_wait (&work_cond,
&work_lock));
}
GNUNET_assert (0 ==
pthread_mutex_unlock (&work_lock));
- GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
- "Crypto worker exiting\n");
return NULL;
}