summaryrefslogtreecommitdiff
path: root/src/util/taler-exchange-secmod-eddsa.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-eddsa.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-eddsa.c')
-rw-r--r--src/util/taler-exchange-secmod-eddsa.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/util/taler-exchange-secmod-eddsa.c b/src/util/taler-exchange-secmod-eddsa.c
index ffd7b523b..7e25ac7e1 100644
--- a/src/util/taler-exchange-secmod-eddsa.c
+++ b/src/util/taler-exchange-secmod-eddsa.c
@@ -342,8 +342,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)
{
@@ -357,9 +355,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);
{
if (GNUNET_OK !=
GNUNET_CRYPTO_eddsa_sign_ (&wi->key->exchange_priv.eddsa_priv,
@@ -391,16 +386,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;
}
@@ -549,9 +540,6 @@ handle_done (void *cls)
.exchange_sig = wi->signature
};
- GNUNET_log (GNUNET_ERROR_TYPE_INFO,
- "Transmitting signature for request %p\n",
- wi);
(void) transmit (&wi->addr,
wi->addr_size,
&sr.header);