X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a39a45af5e19dfb8b8ed2cb084b3a6b518d179e4..83acfa5389165446231f2b5006f4308b19f4ef10:/include/simgrid/forward.h diff --git a/include/simgrid/forward.h b/include/simgrid/forward.h index c95d3ff53c..fd0ab86093 100644 --- a/include/simgrid/forward.h +++ b/include/simgrid/forward.h @@ -24,6 +24,10 @@ XBT_PUBLIC void intrusive_ptr_release(Actor* actor); XBT_PUBLIC void intrusive_ptr_add_ref(Actor* actor); class Barrier; +/** Smart pointer to a simgrid::s4u::Barrier */ +typedef boost::intrusive_ptr BarrierPtr; +XBT_PUBLIC void intrusive_ptr_release(Barrier* m); +XBT_PUBLIC void intrusive_ptr_add_ref(Barrier* m); class Comm; /** Smart pointer to a simgrid::s4u::Comm */ @@ -70,6 +74,13 @@ typedef boost::intrusive_ptr MutexPtr; class NetZone; class VirtualMachine; class File; + +class Semaphore; +/** Smart pointer to a simgrid::s4u::Semaphore */ +typedef boost::intrusive_ptr SemaphorePtr; +XBT_PUBLIC void intrusive_ptr_release(Semaphore* m); +XBT_PUBLIC void intrusive_ptr_add_ref(Semaphore* m); + class Storage; } // namespace s4u @@ -176,7 +187,6 @@ typedef simgrid::kernel::actor::ActorImpl* smx_actor_t; typedef simgrid::kernel::activity::ConditionVariableImpl* smx_cond_t; typedef simgrid::kernel::activity::MutexImpl* smx_mutex_t; typedef simgrid::kernel::activity::MailboxImpl* smx_mailbox_t; -typedef simgrid::surf::StorageImpl* surf_storage_t; #else @@ -195,7 +205,6 @@ typedef struct s_smx_actor* smx_actor_t; typedef struct s_smx_cond_t* smx_cond_t; typedef struct s_smx_mutex* smx_mutex_t; typedef struct s_smx_mailbox* smx_mailbox_t; -typedef struct s_surf_storage* surf_storage_t; #endif