X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/def75190166f07cc72917cb15535b660aa976e7f..dac5d8074d0d4971410ad158c52f1bc6f1dda9a4:/include/simgrid/simix.h diff --git a/include/simgrid/simix.h b/include/simgrid/simix.h index 4c0fb6c743..95edc8c321 100644 --- a/include/simgrid/simix.h +++ b/include/simgrid/simix.h @@ -16,7 +16,6 @@ #include "simgrid/datatypes.h" #include "simgrid/host.h" - #ifdef __cplusplus namespace simgrid { @@ -33,22 +32,21 @@ namespace simix { class Context; class ContextFactory; class Mutex; + class Mailbox; } } typedef simgrid::simix::Context *smx_context_t; typedef simgrid::simix::Process *smx_process_t; - -/** - * \ingroup simix_synchro_management - */ typedef simgrid::simix::Mutex *smx_mutex_t; +typedef simgrid::simix::Mailbox *smx_mailbox_t; #else typedef struct s_smx_context *smx_context_t; typedef struct s_smx_process *smx_process_t; typedef struct s_smx_mutex *smx_mutex_t; +typedef struct s_smx_mailbox *smx_mailbox_t; #endif @@ -111,10 +109,6 @@ typedef enum { /** @} */ /******************************* Networking ***********************************/ -/** - * \ingroup simix_mbox_management - */ -typedef struct s_smx_mailbox *smx_mailbox_t; /* Process creation/destruction callbacks */ typedef void (*void_pfn_smxprocess_t) (smx_process_t); @@ -128,7 +122,7 @@ extern int smx_context_guard_size_was_set; SG_BEGIN_DECL() -XBT_PUBLIC(xbt_dynar_t) SIMIX_process_get_runnable(void); +XBT_PUBLIC(xbt_dynar_t) SIMIX_process_get_runnable(); XBT_PUBLIC(smx_process_t) SIMIX_process_from_PID(int PID); XBT_PUBLIC(xbt_dynar_t) SIMIX_processes_as_dynar(void); @@ -136,11 +130,11 @@ XBT_PUBLIC(xbt_dynar_t) SIMIX_processes_as_dynar(void); XBT_PUBLIC(int) SIMIX_context_is_parallel(void); XBT_PUBLIC(int) SIMIX_context_get_nthreads(void); XBT_PUBLIC(void) SIMIX_context_set_nthreads(int nb_threads); -XBT_PUBLIC(int) SIMIX_context_get_parallel_threshold(void); +XBT_PUBLIC(int) SIMIX_context_get_parallel_threshold(); XBT_PUBLIC(void) SIMIX_context_set_parallel_threshold(int threshold); XBT_PUBLIC(e_xbt_parmap_mode_t) SIMIX_context_get_parallel_mode(void); XBT_PUBLIC(void) SIMIX_context_set_parallel_mode(e_xbt_parmap_mode_t mode); -XBT_PUBLIC(int) SIMIX_is_maestro(); +XBT_PUBLIC(int) SIMIX_is_maestro(void); /********************************** Global ************************************/ @@ -157,8 +151,8 @@ XBT_PUBLIC(void) SIMIX_function_register_process_cleanup(void_pfn_smxprocess_t f XBT_PUBLIC(void) SIMIX_function_register_process_kill(void_pfn_smxprocess_t function); /* Simulation execution */ -XBT_PUBLIC(void) SIMIX_run(void); -XBT_PUBLIC(double) SIMIX_get_clock(void); +XBT_PUBLIC(void) SIMIX_run(); +XBT_PUBLIC(double) SIMIX_get_clock(); /* Timer functions FIXME: should these be public? */ typedef struct s_smx_timer* smx_timer_t; @@ -168,7 +162,7 @@ XBT_PUBLIC(void) SIMIX_timer_remove(smx_timer_t timer); XBT_PUBLIC(double) SIMIX_timer_next(void); XBT_PUBLIC(double) SIMIX_timer_get_date(smx_timer_t timer); -XBT_PUBLIC(void) SIMIX_display_process_status(void); +XBT_PUBLIC(void) SIMIX_display_process_status(); /******************************* Environment **********************************/ XBT_PUBLIC(void) SIMIX_create_environment(const char *file); @@ -177,7 +171,6 @@ XBT_PUBLIC(void) SIMIX_create_environment(const char *file); XBT_PUBLIC(void) SIMIX_function_register(const char *name, xbt_main_func_t code); XBT_PUBLIC(void) SIMIX_function_register_default(xbt_main_func_t code); -XBT_PUBLIC(xbt_main_func_t) SIMIX_get_registered_function(const char *name); XBT_PUBLIC(void) SIMIX_init_application(void); XBT_PUBLIC(void) SIMIX_launch_application(const char *file); @@ -203,7 +196,7 @@ XBT_PUBLIC(smx_process_t) SIMIX_process_attach( const char* hostname, xbt_dict_t properties, smx_process_t parent_process); -XBT_PUBLIC(void) SIMIX_process_detach(void); +XBT_PUBLIC(void) SIMIX_process_detach(); /*********************************** Host *************************************/ XBT_PUBLIC(sg_host_t) SIMIX_host_self(void); @@ -214,12 +207,14 @@ XBT_PUBLIC(void) SIMIX_host_self_set_data(void *data); XBT_PUBLIC(void*) SIMIX_host_self_get_data(void); /********************************* Process ************************************/ +XBT_PUBLIC(smx_process_t) SIMIX_process_ref(smx_process_t process); +XBT_PUBLIC(void) SIMIX_process_unref(smx_process_t process); XBT_PUBLIC(int) SIMIX_process_count(void); XBT_PUBLIC(smx_process_t) SIMIX_process_self(void); XBT_PUBLIC(const char*) SIMIX_process_self_get_name(void); XBT_PUBLIC(void) SIMIX_process_self_set_data(void *data); XBT_PUBLIC(void*) SIMIX_process_self_get_data(void); -XBT_PUBLIC(smx_context_t) SIMIX_process_get_context(smx_process_t); +XBT_PUBLIC(smx_context_t) SIMIX_process_get_context(smx_process_t process); XBT_PUBLIC(void) SIMIX_process_set_context(smx_process_t p,smx_context_t c); XBT_PUBLIC(int) SIMIX_process_has_pending_comms(smx_process_t process); XBT_PUBLIC(void) SIMIX_process_on_exit_runall(smx_process_t process); @@ -325,7 +320,6 @@ XBT_PUBLIC(e_smx_state_t) simcall_process_sleep(double duration); /***** Rendez-vous points *****/ XBT_PUBLIC(smx_mailbox_t) simcall_mbox_create(const char *name); -XBT_PUBLIC(smx_mailbox_t) simcall_mbox_get_by_name(const char *name); XBT_PUBLIC(smx_synchro_t) simcall_mbox_front(smx_mailbox_t mbox); XBT_PUBLIC(void) simcall_mbox_set_receiver(smx_mailbox_t mbox , smx_process_t process); @@ -364,23 +358,25 @@ XBT_PUBLIC(smx_synchro_t) simcall_comm_iprobe(smx_mailbox_t mbox, int type, int XBT_PUBLIC(void) simcall_comm_cancel(smx_synchro_t comm); /* FIXME: waitany is going to be a vararg function, and should take a timeout */ -XBT_PUBLIC(unsigned int) simcall_comm_waitany(xbt_dynar_t comms); +XBT_PUBLIC(unsigned int) simcall_comm_waitany(xbt_dynar_t comms, double timeout); XBT_PUBLIC(void) simcall_comm_wait(smx_synchro_t comm, double timeout); XBT_PUBLIC(int) simcall_comm_test(smx_synchro_t comm); -XBT_PUBLIC(int) simcall_comm_testany(xbt_dynar_t comms); +XBT_PUBLIC(int) simcall_comm_testany(smx_synchro_t* comms, size_t count); /************************** Tracing handling **********************************/ XBT_PUBLIC(void) simcall_set_category(smx_synchro_t synchro, const char *category); /************************** Synchro simcalls **********************************/ XBT_PUBLIC(smx_mutex_t) simcall_mutex_init(void); -XBT_PUBLIC(void) SIMIX_mutex_destroy(smx_mutex_t mutex); +XBT_PUBLIC(smx_mutex_t) SIMIX_mutex_ref(smx_mutex_t mutex); +XBT_PUBLIC(void) SIMIX_mutex_unref(smx_mutex_t mutex); XBT_PUBLIC(void) simcall_mutex_lock(smx_mutex_t mutex); XBT_PUBLIC(int) simcall_mutex_trylock(smx_mutex_t mutex); XBT_PUBLIC(void) simcall_mutex_unlock(smx_mutex_t mutex); XBT_PUBLIC(smx_cond_t) simcall_cond_init(void); -XBT_PUBLIC(void) SIMIX_cond_destroy(smx_cond_t cond); +XBT_PUBLIC(void) SIMIX_cond_unref(smx_cond_t cond); +XBT_PUBLIC(smx_cond_t) SIMIX_cond_ref(smx_cond_t cond); XBT_PUBLIC(void) simcall_cond_signal(smx_cond_t cond); XBT_PUBLIC(void) simcall_cond_wait(smx_cond_t cond, smx_mutex_t mutex); XBT_PUBLIC(void) simcall_cond_wait_timeout(smx_cond_t cond,