Cleanup mttest.c : do not try to output reference counts when threads are done
authorRichard Levitte <levitte@openssl.org>
Sun, 21 Jun 2015 17:16:50 +0000 (19:16 +0200)
committerRichard Levitte <levitte@openssl.org>
Sun, 21 Jun 2015 19:45:48 +0000 (21:45 +0200)
Reviewed-by: Rich Salz <rsalz@openssl.org>
crypto/threads/mttest.c

index 2016eda7e6898e7128c096536fc48fe06da90b4d..7bb431778fa088375176ae2d59b55023228fdfe9 100644 (file)
@@ -803,8 +803,12 @@ void do_threads(SSL_CTX *s_ctx, SSL_CTX *c_ctx)
         thr_join(thread_ctx[i], NULL, NULL);
     }
 
         thr_join(thread_ctx[i], NULL, NULL);
     }
 
+#if 0 /* We can't currently find out the reference amount */
     BIO_printf(bio_stdout, "solaris threads done (%d,%d)\n",
                s_ctx->references, c_ctx->references);
     BIO_printf(bio_stdout, "solaris threads done (%d,%d)\n",
                s_ctx->references, c_ctx->references);
+#else
+    BIO_printf(bio_stdout, "solaris threads done\n");
+#endif
 }
 
 void solaris_thread_id(CRYPTO_THREADID *tid)
 }
 
 void solaris_thread_id(CRYPTO_THREADID *tid)
@@ -887,8 +891,12 @@ void do_threads(SSL_CTX *s_ctx, SSL_CTX *c_ctx)
         wait(NULL);
     }
 
         wait(NULL);
     }
 
+#if 0 /* We can't currently find out the reference amount */
     BIO_printf(bio_stdout, "irix threads done (%d,%d)\n",
                s_ctx->references, c_ctx->references);
     BIO_printf(bio_stdout, "irix threads done (%d,%d)\n",
                s_ctx->references, c_ctx->references);
+#else
+    BIO_printf(bio_stdout, "irix threads done\n");
+#endif
 }
 
 unsigned long irix_thread_id(void)
 }
 
 unsigned long irix_thread_id(void)
@@ -965,8 +973,12 @@ void do_threads(SSL_CTX *s_ctx, SSL_CTX *c_ctx)
         pthread_join(thread_ctx[i], NULL);
     }
 
         pthread_join(thread_ctx[i], NULL);
     }
 
+#if 0 /* We can't currently find out the reference amount */
     BIO_printf(bio_stdout, "pthreads threads done (%d,%d)\n",
                s_ctx->references, c_ctx->references);
     BIO_printf(bio_stdout, "pthreads threads done (%d,%d)\n",
                s_ctx->references, c_ctx->references);
+#else
+    BIO_printf(bio_stdout, "pthreads threads done\n");
+#endif
 }
 
 void pthreads_thread_id(CRYPTO_THREADID *tid)
 }
 
 void pthreads_thread_id(CRYPTO_THREADID *tid)
@@ -1043,8 +1055,12 @@ void do_threads(SSL_CTX *s_ctx, SSL_CTX *c_ctx)
     for (i = 0; i < thread_number; i++) {
         MPKSemaphoreWait(ThreadSem);
     }
     for (i = 0; i < thread_number; i++) {
         MPKSemaphoreWait(ThreadSem);
     }
+#if 0 /* We can't currently find out the reference amount */
     BIO_printf(bio_stdout, "netware threads done (%d,%d)\n",
                s_ctx->references, c_ctx->references);
     BIO_printf(bio_stdout, "netware threads done (%d,%d)\n",
                s_ctx->references, c_ctx->references);
+#else
+    BIO_printf(bio_stdout, "netware threads done\n");
+#endif
 }
 
 unsigned long netware_thread_id(void)
 }
 
 unsigned long netware_thread_id(void)