X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/29a3b2869c0075fc75e8ccc66fc1d9c4c8bf6a85..08e94eb0482589e4b287cbea301b84daf52635bd:/include/simgrid/s4u/Mutex.hpp diff --git a/include/simgrid/s4u/Mutex.hpp b/include/simgrid/s4u/Mutex.hpp index 4c8b9207fa..e1d391b442 100644 --- a/include/simgrid/s4u/Mutex.hpp +++ b/include/simgrid/s4u/Mutex.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2006-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2006-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. */ @@ -30,14 +30,14 @@ class XBT_PUBLIC Mutex { friend simgrid::s4u::ConditionVariable; friend simgrid::kernel::activity::MutexImpl; - simgrid::kernel::activity::MutexImpl* pimpl_; + simgrid::kernel::activity::MutexImpl* const pimpl_; explicit Mutex(simgrid::kernel::activity::MutexImpl* mutex) : pimpl_(mutex) {} - /* refcounting */ friend XBT_PUBLIC void intrusive_ptr_add_ref(Mutex* mutex); friend XBT_PUBLIC void intrusive_ptr_release(Mutex* mutex); public: + ~Mutex(); // No copy: /** You cannot create a new mutex by copying an existing one. Use MutexPtr instead */ Mutex(Mutex const&) = delete; @@ -46,14 +46,15 @@ public: /** Constructs a new mutex */ static MutexPtr create(); - void lock(); void unlock(); bool try_lock(); +#ifndef DOXYGEN // deprecated /** @deprecated Mutex::create() */ XBT_ATTRIB_DEPRECATED_v323("Please use Mutex::create()") static MutexPtr createMutex() { return create(); } +#endif }; }} // namespace simgrid::s4u