X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/595e59c568ff5f8510de201bfd800951cdc2adcb..61427a88a76a2c2ef25d0d5b8132995c6f550e5c:/include/simgrid/simix.h diff --git a/include/simgrid/simix.h b/include/simgrid/simix.h index 02fdab7357..4292d94c82 100644 --- a/include/simgrid/simix.h +++ b/include/simgrid/simix.h @@ -34,13 +34,13 @@ namespace context { \see m_process_management @{ */ class ActorImpl; - class Mutex; + class MutexImpl; } } typedef simgrid::kernel::context::Context* smx_context_t; typedef simgrid::simix::ActorImpl* smx_actor_t; -typedef simgrid::simix::Mutex* smx_mutex_t; +typedef simgrid::simix::MutexImpl* smx_mutex_t; typedef simgrid::kernel::activity::MailboxImpl* smx_mailbox_t; #else @@ -95,9 +95,6 @@ typedef struct s_smx_sem *smx_sem_t; /********************************** File *************************************/ typedef struct s_smx_file *smx_file_t; -/********************************** Storage *************************************/ -typedef xbt_dictelm_t smx_storage_t; - /* ****************************** Process *********************************** */ typedef enum { @@ -110,8 +107,6 @@ typedef enum { /* Process creation/destruction callbacks */ typedef void (*void_pfn_smxprocess_t) (smx_actor_t); -/* for auto-restart function */ -typedef void (*void_pfn_sghost_t) (sg_host_t); extern int smx_context_stack_size; extern int smx_context_stack_size_was_set; @@ -361,8 +356,6 @@ XBT_PUBLIC(xbt_dynar_t) simcall_file_get_info(smx_file_t fd); XBT_PUBLIC(sg_size_t) simcall_file_tell(smx_file_t fd); XBT_PUBLIC(int) simcall_file_seek(smx_file_t fd, sg_offset_t offset, int origin); XBT_PUBLIC(int) simcall_file_move(smx_file_t fd, const char* fullpath); -/***************************** Storage **********************************/ -XBT_PUBLIC(xbt_dict_t) simcall_storage_get_properties(smx_storage_t storage); /************************** MC simcalls **********************************/ XBT_PUBLIC(int) simcall_mc_random(int min, int max);