X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7d5154294d0c97a3690134cc5d3a9900189055cf..e8f0399a8d83bfddeb5ca70bec5880eb26f420b5:/src/kernel/context/ContextUnix.cpp diff --git a/src/kernel/context/ContextUnix.cpp b/src/kernel/context/ContextUnix.cpp index 569f2d893c..fba49bf5e5 100644 --- a/src/kernel/context/ContextUnix.cpp +++ b/src/kernel/context/ContextUnix.cpp @@ -74,7 +74,7 @@ UContext::UContext(std::function&& code, actor::ActorImpl* actor, Swappe this->uc_.uc_stack.ss_sp = sg_makecontext_stack_addr(get_stack()); this->uc_.uc_stack.ss_size = sg_makecontext_stack_size(smx_context_stack_size); // Makecontext expects integer arguments; we want to pass a pointer. - // This context address is decomposed into a serie of integers, which are passed as arguments to makecontext. + // This context address is decomposed into a series of integers, which are passed as arguments to makecontext. int ctx_addr[CTX_ADDR_LEN]{}; UContext* arg = this;