X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/88fad0aaff9eb463f048bfdfe4ad6218aba44ddb..5ac4d2b6e654a1bbe13782569e401a875cb9aab6:/src/kernel/activity/MutexImpl.hpp diff --git a/src/kernel/activity/MutexImpl.hpp b/src/kernel/activity/MutexImpl.hpp index 53543b6e80..613d799477 100644 --- a/src/kernel/activity/MutexImpl.hpp +++ b/src/kernel/activity/MutexImpl.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2012-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2012-2019. 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. */ @@ -42,11 +42,11 @@ public: delete mutex; } - simgrid::s4u::Mutex& mutex() { return mutex_; } + simgrid::s4u::Mutex& mutex() { return piface_; } private: std::atomic_int_fast32_t refcount_{1}; - simgrid::s4u::Mutex mutex_; + simgrid::s4u::Mutex piface_; }; } }