X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/48efae676c3604efffe21365b2d525e578fd22e5..e7474e602031399bbebb1105d683564d1fb2f1c0:/src/simix/ContextBoost.cpp diff --git a/src/simix/ContextBoost.cpp b/src/simix/ContextBoost.cpp index 9108558d6b..605fee74f6 100644 --- a/src/simix/ContextBoost.cpp +++ b/src/simix/ContextBoost.cpp @@ -1,11 +1,8 @@ -/* Copyright (c) 2015. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2015. 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. */ -/** @file BoostContext.cpp Userspace context switching implementation based on Boost.Context */ - #include #include @@ -34,7 +31,6 @@ public: : BoostContext(std::move(code), cleanup_func, process) {} void stop() override; void suspend() override; - void resume(); }; #if HAVE_THREAD_CONTEXTS @@ -46,7 +42,7 @@ public: : BoostContext(std::move(code), cleanup_func, process) {} void stop() override; void suspend() override; - void resume(); + void resume() override; }; #endif