X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d3b82ab21c706eff03f671a2a997c20b2e29889e..578680064eeeffaea5471a65994302118c0f03b9:/examples/msg/migration/migration.c diff --git a/examples/msg/migration/migration.c b/examples/msg/migration/migration.c index cd2b65dbb8..898ac256e8 100644 --- a/examples/msg/migration/migration.c +++ b/examples/msg/migration/migration.c @@ -12,6 +12,13 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, "Messages specific for this msg example"); +/** @addtogroup MSG_examples + * + * - migration/migration.c Demonstrates how to use the @ref + * MSG_process_migrate function to let processes change the host they + * run on after their start. + */ + xbt_mutex_t mutex = NULL; xbt_cond_t cond = NULL; static m_process_t process_to_migrate = NULL; @@ -39,7 +46,7 @@ static int emigrant(int argc, char *argv[]) xbt_mutex_release(mutex); MSG_process_suspend(MSG_process_self()); m_host_t h = MSG_process_get_host(MSG_process_self()); - XBT_INFO("I've been moved on this new host: %s", h->name); + XBT_INFO("I've been moved on this new host: %s", MSG_host_get_name(h)); XBT_INFO("Uh, nothing to do here. Stopping now"); return 0; } /* end_of_emigrant */