From b40b835a7021ccf44ee335bf7525d1fb829ecf9d Mon Sep 17 00:00:00 2001 From: Gilles Gouaillardet Date: Tue, 26 Jun 2018 14:53:25 +0900 Subject: [PATCH] btl/uct: remove debug code Signed-off-by: Gilles Gouaillardet --- opal/mca/btl/uct/btl_uct_component.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/opal/mca/btl/uct/btl_uct_component.c b/opal/mca/btl/uct/btl_uct_component.c index a6c9002da0..aa88fe82d0 100644 --- a/opal/mca/btl/uct/btl_uct_component.c +++ b/opal/mca/btl/uct/btl_uct_component.c @@ -34,10 +34,6 @@ #include "btl_uct_device_context.h" #include "btl_uct_am.h" -#if !OPAL_C_HAVE__THREAD_LOCAL -opal_tsd_key_t mca_btl_uct_tsd_device_key; -#endif - static int mca_btl_uct_component_register(void) { mca_btl_uct_module_t *module = &mca_btl_uct_module_template; @@ -116,10 +112,6 @@ static int mca_btl_uct_component_open(void) } } -#if !OPAL_C_HAVE__THREAD_LOCAL - opal_tsd_key_create (&mca_btl_uct_tsd_device_key, NULL); -#endif - return OPAL_SUCCESS; } @@ -129,10 +121,6 @@ static int mca_btl_uct_component_open(void) */ static int mca_btl_uct_component_close(void) { -#if !OPAL_C_HAVE__THREAD_LOCAL - opal_tsd_key_delete (mca_btl_uct_tsd_device_key); -#endif - return OPAL_SUCCESS; }