Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
small simplifications around simcalls
[simgrid.git] / src / kernel / activity / SemaphoreImpl.hpp
1 /* Copyright (c) 2019. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SIMGRID_KERNEL_ACTIVITY_SEMAPHOREIMPL_HPP_
7 #define SIMGRID_KERNEL_ACTIVITY_SEMAPHOREIMPL_HPP_
8
9 #include <atomic>
10 #include <boost/intrusive/list.hpp>
11
12 #include "simgrid/s4u/Semaphore.hpp"
13 #include "src/kernel/actor/ActorImpl.hpp"
14
15 namespace simgrid {
16 namespace kernel {
17 namespace activity {
18
19 class XBT_PUBLIC SemaphoreImpl {
20   std::atomic_int_fast32_t refcount_{1};
21   unsigned int value_;
22
23 public:
24   actor::SynchroList sleeping_; /* list of sleeping actors*/
25
26   explicit SemaphoreImpl(unsigned int value) : value_(value){};
27   ~SemaphoreImpl() = default;
28
29   SemaphoreImpl(SemaphoreImpl const&) = delete;
30   SemaphoreImpl& operator=(SemaphoreImpl const&) = delete;
31
32   void acquire(actor::ActorImpl* issuer, double timeout);
33   void release();
34   bool would_block() { return (value_ == 0); }
35
36   unsigned int get_capacity() { return value_; }
37
38   friend void intrusive_ptr_add_ref(SemaphoreImpl* sem)
39   {
40     XBT_ATTRIB_UNUSED auto previous = sem->refcount_.fetch_add(1);
41     xbt_assert(previous != 0);
42   }
43   friend void intrusive_ptr_release(SemaphoreImpl* sem)
44   {
45     if (sem->refcount_.fetch_sub(1) == 1)
46       delete sem;
47   }
48 };
49 } // namespace activity
50 } // namespace kernel
51 } // namespace simgrid
52
53 #endif /* SIMGRID_KERNEL_ACTIVITY_SEMAPHOREIMPL_HPP_ */