Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Sysv contexts: remove useless indirection.
[simgrid.git] / src / kernel / context / ContextUnix.hpp
index 6ad0412..8bc8ce6 100644 (file)
@@ -41,7 +41,7 @@ private:
   void* stack_ = nullptr; /* the thread stack */
   ucontext_t uc_;         /* the ucontext that executes the code */
 
   void* stack_ = nullptr; /* the thread stack */
   ucontext_t uc_;         /* the ucontext that executes the code */
 
-  static void wrapper(int, int);
+  static void smx_ctx_sysv_wrapper(int, int);
   static void make_ctx(ucontext_t* ucp, void (*func)(int, int), UContext* arg);
 };
 
   static void make_ctx(ucontext_t* ucp, void (*func)(int, int), UContext* arg);
 };