Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Make cleanupSurf() private.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Mon, 18 Feb 2019 17:24:59 +0000 (18:24 +0100)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Wed, 20 Feb 2019 08:15:35 +0000 (09:15 +0100)
src/kernel/activity/CommImpl.hpp

index 715483a..f64dc44 100644 (file)
@@ -17,6 +17,7 @@ namespace activity {
 
 class XBT_PUBLIC CommImpl : public ActivityImpl {
   ~CommImpl() override;
+  void cleanupSurf();
 
 public:
   enum class Type { SEND = 0, RECEIVE, READY, DONE };
@@ -30,7 +31,6 @@ public:
   void finish() override;
   void cancel();
   double remains();
-  void cleanupSurf(); // FIXME: make me protected
 
   CommImpl::Type type;          /* Type of the communication (SIMIX_COMM_SEND or SIMIX_COMM_RECEIVE) */
   smx_mailbox_t mbox = nullptr; /* Rendez-vous where the comm is queued */