Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Depreciate ForcefulKillException::try_n_catch().
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Wed, 8 Mar 2023 14:09:13 +0000 (15:09 +0100)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Wed, 8 Mar 2023 14:09:13 +0000 (15:09 +0100)
It was used by the Java bindings.

include/simgrid/Exception.hpp
src/simgrid/Exception.cpp

index ca94f51..63a44e4 100644 (file)
@@ -185,7 +185,8 @@ public:
   const char* what() const noexcept { return msg_.c_str(); }
 
   XBT_ATTRIB_NORETURN static void do_throw();
-  static bool try_n_catch(const std::function<void()>& try_block);
+  XBT_ATTRIB_DEPRECATED_v337("Please manifest if you actually need this function") static bool try_n_catch(
+      const std::function<void()>& try_block);
 
 private:
   std::string msg_ = "Actor killed.";
index 0256d3b..9694c6b 100644 (file)
@@ -31,7 +31,7 @@ void ForcefulKillException::do_throw()
   throw ForcefulKillException();
 }
 
-bool ForcefulKillException::try_n_catch(const std::function<void()>& try_block)
+bool ForcefulKillException::try_n_catch(const std::function<void()>& try_block) // XBT_ATTRIB_DEPRECATED_v337
 {
   bool res;
   try {