X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/67dcd4d654dcbf0688102adc828d7dba5eac36ac..8813202c9b93bd164e386568e895d715af0ac9ee:/include/simgrid/forward.h diff --git a/include/simgrid/forward.h b/include/simgrid/forward.h index c97b3cfbf3..7727ca5b43 100644 --- a/include/simgrid/forward.h +++ b/include/simgrid/forward.h @@ -227,7 +227,8 @@ using s4u_NetZone = simgrid::s4u::NetZone; using s4u_VM = simgrid::s4u::VirtualMachine; using smx_timer_t = simgrid::kernel::timer::Timer*; -using smx_actor_t = simgrid::kernel::actor::ActorImpl*; +using smx_actor_t + XBT_ATTRIB_DEPRECATED_v335("Please use simgrid::kernel::actor::ActorImpl*") = simgrid::kernel::actor::ActorImpl*; using smx_activity_t = simgrid::kernel::activity::ActivityImpl*; using smx_cond_t = simgrid::kernel::activity::ConditionVariableImpl*; using smx_mailbox_t = simgrid::kernel::activity::MailboxImpl*; @@ -251,7 +252,7 @@ typedef struct s4u_NetZone s4u_NetZone; typedef struct s4u_VM s4u_VM; typedef struct s_smx_timer* smx_timer_t; -typedef struct s_smx_actor* smx_actor_t; +XBT_ATTRIB_DEPRECATED_v335("Please stop using this type alias") typedef struct s_smx_actor* smx_actor_t; typedef struct s_smx_activity* smx_activity_t; typedef struct s_smx_cond_t* smx_cond_t; typedef struct s_smx_mailbox* smx_mailbox_t;