Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2022.
[simgrid.git] / src / smpi / include / smpi_utils.hpp
index 624fe72..a531494 100644 (file)
@@ -1,11 +1,14 @@
-/* Copyright (c) 2016-2021. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2016-2022. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
 #ifndef SMPI_UTILS_HPP
 #define SMPI_UTILS_HPP
-#include "xbt/base.h"
+#include <xbt/base.h>
+
+#include "smpi_f2c.hpp"
+
 #include <cstddef>
 #include <string>
 #include <vector>
@@ -16,24 +19,24 @@ struct s_smpi_factor_t {
   std::vector<double> values;
 };
 
-
 namespace simgrid {
 namespace smpi {
 namespace utils {
 
-  extern double total_benched_time;
-  extern size_t total_malloc_size;
-  extern size_t total_shared_size;
-  extern size_t max_malloc_size;
-
-  XBT_PUBLIC std::vector<s_smpi_factor_t> parse_factor(const std::string& smpi_coef_string);
-  XBT_PUBLIC void add_benched_time(double time);
-  XBT_PUBLIC void account_malloc_size(size_t size, const char* file, int line);
-  XBT_PUBLIC void account_shared_size(size_t size);
-  XBT_PUBLIC void print_time_analysis(double time);
-  XBT_PUBLIC void print_memory_analysis();
-}
-}
-}
-
+XBT_PUBLIC std::vector<s_smpi_factor_t> parse_factor(const std::string& smpi_coef_string);
+XBT_PUBLIC void add_benched_time(double time);
+XBT_PUBLIC void account_malloc_size(size_t size, const std::string& file, int line, void* ptr);
+XBT_PUBLIC void account_shared_size(size_t size);
+XBT_PUBLIC void print_time_analysis(double time);
+XBT_PUBLIC void print_buffer_info();
+XBT_PUBLIC void print_memory_analysis();
+XBT_PUBLIC void print_current_handle();
+XBT_PUBLIC void set_current_handle(F2C* handle);
+XBT_PUBLIC void set_current_buffer(int i, const char* name, const void* handle);
+XBT_PUBLIC size_t get_buffer_size(const void* ptr);
+XBT_PUBLIC void account_free(const void* ptr);
+
+} // namespace utils
+} // namespace smpi
+} // namespace simgrid
 #endif