X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e81b0628a697bddad304e69a82d898299ff9fe40..52708c73c2b8cc8f7d1631131caf3c9aa258c4b1:/src/kernel/context/ContextThread.cpp?ds=sidebyside diff --git a/src/kernel/context/ContextThread.cpp b/src/kernel/context/ContextThread.cpp index 9b6d207425..85ac35a62a 100644 --- a/src/kernel/context/ContextThread.cpp +++ b/src/kernel/context/ContextThread.cpp @@ -1,5 +1,4 @@ -/* Copyright (c) 2009-2015. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2009-2017. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -52,7 +51,7 @@ ThreadContext* ThreadContextFactory::create_context( std::function code, void_pfn_smxprocess_t cleanup, smx_actor_t process) { - return this->new_context(std::move(code), cleanup, process, !code); + return this->new_context(std::move(code), cleanup, process, not code); } void ThreadContextFactory::run_all() @@ -115,7 +114,7 @@ ThreadContext::ThreadContext(std::function code, * name, but now the name is stored at SIMIX level, so we pass a null */ this->thread_ = xbt_os_thread_create(nullptr, - maestro ? ThreadContext::maestro_wrapper : ThreadContext::wrapper, + maestro ? &ThreadContext::maestro_wrapper : &ThreadContext::wrapper, this, this); /* wait the starting of the newly created process */ xbt_os_sem_acquire(this->end_);