X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/aefe6fe5db48f4b71f9c4d69daf6ac7ebe2fbb01..2d434cc7dd1bae9cf5fc451f9ead142c2fecec0d:/src/xbt/xbt_misc.cpp diff --git a/src/xbt/xbt_misc.cpp b/src/xbt/xbt_misc.cpp index d5522f8a54..d0960ecd63 100644 --- a/src/xbt/xbt_misc.cpp +++ b/src/xbt/xbt_misc.cpp @@ -26,15 +26,6 @@ XBT_LOG_NEW_CATEGORY(smpi, "All SMPI categories"); /* lives here even if that's const int xbt_pagesize = static_cast(sysconf(_SC_PAGESIZE)); const int xbt_pagebits = static_cast(log2(xbt_pagesize)); -XBT_ATTRIB_NOINLINE void sthread_enable() -{ // These symbols are used from ContextSwapped in any case, but they are only useful - asm(""); -} -XBT_ATTRIB_NOINLINE void sthread_disable() -{ // when libsthread is LD_PRELOADED. In this case, sthread's implem gets used instead. - asm(""); -} - /* these two functions belong to xbt/sysdep.h, which have no corresponding .c file */ /** @brief like xbt_free, but you can be sure that it is a function */ void xbt_free_f(void* p) noexcept(noexcept(::free))