X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=nucleus%2Flibrary%2Ftests_crypto%2Ftest_blowfish_crypto.cpp;h=2f2e07783baac1e8b9319441e2808cdb8e32bdd7;hb=3475ea0f35f499fc602826d428a4f152cb6c8920;hp=e6fdd4b04526089688aa14719b1bf2ac3d375db4;hpb=3ea085ec301ed1399dfa1e9f3a240312dc95410b;p=feisty_meow.git diff --git a/nucleus/library/tests_crypto/test_blowfish_crypto.cpp b/nucleus/library/tests_crypto/test_blowfish_crypto.cpp index e6fdd4b0..2f2e0778 100644 --- a/nucleus/library/tests_crypto/test_blowfish_crypto.cpp +++ b/nucleus/library/tests_crypto/test_blowfish_crypto.cpp @@ -91,11 +91,21 @@ private: int test_blowfish::execute() { FUNCDEF("execute"); +#ifdef DEBUG_BLOWFISH + LOG(astring("starting blowfish test...")); +#endif int left = THREAD_COUNT; while (left--) { - _threads.add_thread(new blowfish_thread(*this), true, NIL); +#ifdef DEBUG_BLOWFISH + LOG(a_sprintf("blowfish thread %d starting...", left)); +#endif + _threads.add_thread(new blowfish_thread(*this), true, NULL_POINTER); } +#ifdef DEBUG_BLOWFISH + LOG(astring("started all threads...")); +#endif + while (_threads.threads()) { #ifdef DEBUG_BLOWFISH LOG(astring("cleaning debris."));