Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics
[simgrid.git] / src / s4u / s4u_mutex.cpp
1 /* Copyright (c) 2006-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "xbt/log.h"
8 #include "src/msg/msg_private.h"
9 #include "src/simix/smx_synchro_private.h"
10
11 #include "simgrid/s4u/Mutex.hpp"
12
13 namespace simgrid {
14 namespace s4u {
15
16 /** @brief Blocks the calling actor until the mutex can be obtained */
17 void Mutex::lock()
18 {
19   simcall_mutex_lock(mutex_);
20 }
21
22 /** @brief Release the ownership of the mutex, unleashing a blocked actor (if any)
23  *
24  * Will fail if the calling actor does not own the mutex.
25  */
26 void Mutex::unlock()
27 {
28   simcall_mutex_unlock(mutex_);
29 }
30
31 /** @brief Acquire the mutex if it's free, and return false (without blocking) if not */
32 bool Mutex::try_lock()
33 {
34   return simcall_mutex_trylock(mutex_);
35 }
36
37 /** @brief Create a new mutex
38  *
39  * See @ref s4u_raii.
40  */
41 MutexPtr Mutex::createMutex()
42 {
43   smx_mutex_t mutex = simcall_mutex_init();
44   return MutexPtr(&mutex->mutex(), false);
45 }
46
47 }
48 }