Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of https://framagit.org/simgrid/simgrid
[simgrid.git] / src / kernel / activity / ActivityImpl.cpp
1 /* Copyright (c) 2007-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 #include "src/kernel/activity/ActivityImpl.hpp"
7
8 namespace simgrid {
9 namespace kernel {
10 namespace activity {
11
12 // boost::intrusive_ptr<Activity> support:
13 void intrusive_ptr_add_ref(simgrid::kernel::activity::ActivityImpl* activity)
14 {
15   activity->refcount_.fetch_add(1, std::memory_order_relaxed);
16 }
17
18 void intrusive_ptr_release(simgrid::kernel::activity::ActivityImpl* activity)
19 {
20   if (activity->refcount_.fetch_sub(1, std::memory_order_release) == 1) {
21     std::atomic_thread_fence(std::memory_order_acquire);
22     delete activity;
23   }
24 }
25 }
26 }
27 } // namespace simgrid::kernel::activity::