X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6a6935148284f51d20bceed365ed0edea8b5a70e..5d4c47baed3b8ae7aac5e5bbdcd4bf11229b38d1:/include/simgrid/simix.h diff --git a/include/simgrid/simix.h b/include/simgrid/simix.h index 6c74149d4a..152fcccbb4 100644 --- a/include/simgrid/simix.h +++ b/include/simgrid/simix.h @@ -26,14 +26,6 @@ namespace context { namespace simix { - /** @brief Process datatype - @ingroup simix_process_management - - A process may be defined as a code, with some private - data, executing in a location. - \see m_process_management - @{ */ - class ActorImpl; class MutexImpl; } } @@ -192,15 +184,11 @@ XBT_PUBLIC(smx_actor_t) SIMIX_process_attach( XBT_PUBLIC(void) SIMIX_process_detach(); /*********************************** Host *************************************/ -XBT_PUBLIC(sg_host_t) SIMIX_host_self(); -XBT_PUBLIC(const char*) SIMIX_host_self_get_name(); XBT_PUBLIC(void) SIMIX_host_off(sg_host_t host, smx_actor_t issuer); XBT_PUBLIC(void) SIMIX_host_self_set_data(void *data); XBT_PUBLIC(void*) SIMIX_host_self_get_data(); /********************************* Process ************************************/ -XBT_PUBLIC(smx_actor_t) SIMIX_process_ref(smx_actor_t process); -XBT_PUBLIC(void) SIMIX_process_unref(smx_actor_t process); XBT_PUBLIC(int) SIMIX_process_count(); XBT_PUBLIC(smx_actor_t) SIMIX_process_self(); XBT_PUBLIC(const char*) SIMIX_process_self_get_name(); @@ -235,7 +223,6 @@ XBT_PUBLIC(void) simcall_call(smx_actor_t process); /******************************* Host simcalls ********************************/ XBT_PUBLIC(void) simcall_host_set_data(sg_host_t host, void *data); - XBT_PUBLIC(smx_activity_t) simcall_execution_start(const char *name, double flops_amount, double priority, double bound);