Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Rename method to avoid false positive with sonar.
[simgrid.git] / src / kernel / context / ContextUnix.hpp
index 256fcc0..91badf2 100644 (file)
@@ -41,7 +41,7 @@ private:
   ucontext_t uc_;         /* the ucontext that executes the code */
 
   static void wrapper(int, int);
-  static void makecontext(ucontext_t* ucp, void (*func)(int, int), UContext* arg);
+  static void make_ctx(ucontext_t* ucp, void (*func)(int, int), UContext* arg);
 };
 
 class SerialUContext : public UContext {