Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
This seems to be useless since ... a long time, now (and it breaks on macos)
[simgrid.git] / src / xbt / xbt_log_appender_file.c
index 9a56875..27da686 100644 (file)
@@ -9,9 +9,6 @@
 #include "src/internal_config.h"
 #include "xbt/sysdep.h"
 #include "src/xbt/log_private.h"
-#if HAVE_SMPI
-#include "src/smpi/private.h" // to access bench_begin/end. Not ultraclean, I confess
-#endif
 #include <stdio.h>
 
 static void append_file(xbt_log_appender_t this_, char *str) {
@@ -27,13 +24,6 @@ static void free_(xbt_log_appender_t this_) {
     fclose(this_->data);
 }
 
-#if HAVE_SMPI
-void __smpi_bench_dont (void); // Stupid prototype
-void __smpi_bench_dont (void) { /* I'm only a place-holder in case we link without SMPI */; }
-void smpi_bench_begin(void) __attribute__ ((weak, alias ("__smpi_bench_dont")));
-void smpi_bench_end(void)   __attribute__ ((weak, alias ("__smpi_bench_dont")));
-#endif
-
 XBT_LOG_EXTERNAL_CATEGORY(smpi); // To detect if SMPI is inited
 
 xbt_log_appender_t xbt_log_appender_file_new(char *arg) {