X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a6e4a812f0edc58eeb342f0c990122eabf51e6ec..3203afd846219ef8b41cadda945ea0a98103c46f:/src/kernel/activity/Synchro.hpp diff --git a/src/kernel/activity/Synchro.hpp b/src/kernel/activity/Synchro.hpp index 0d80d3bc13..a2f8daa57a 100644 --- a/src/kernel/activity/Synchro.hpp +++ b/src/kernel/activity/Synchro.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2022. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2023. 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. */ @@ -10,9 +10,7 @@ #include -namespace simgrid { -namespace kernel { -namespace activity { +namespace simgrid::kernel::activity { /** Used to implement mutexes, semaphores and conditions */ class XBT_PUBLIC SynchroImpl : public ActivityImpl_T { @@ -29,12 +27,9 @@ public: void suspend() override; void resume() override; void cancel() override; - void post() override; void set_exception(actor::ActorImpl* issuer) override; void finish() override; }; -} // namespace activity -} // namespace kernel -} // namespace simgrid +} // namespace simgrid::kernel::activity #endif