X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f0cf99d650f27689b97ddcce0582fdf9d6588da7..7166ae6c85f79709c2d6dedb68b0c39af3222857:/include/xbt/synchro.h?ds=sidebyside diff --git a/include/xbt/synchro.h b/include/xbt/synchro.h index 84bdb79798..92e8d3ae9f 100644 --- a/include/xbt/synchro.h +++ b/include/xbt/synchro.h @@ -37,8 +37,8 @@ SG_BEGIN_DECL() XBT_PUBLIC(xbt_thread_t) xbt_thread_self(void); /* xbt_thread_join frees the joined thread (ie the XBT wrapper around it, the OS frees the rest) */ XBT_PUBLIC(void) xbt_thread_join(xbt_thread_t thread); - /* Brutally ends the life of the poor victim */ - XBT_PUBLIC(void) xbt_thread_destroy(xbt_thread_t thread); + /* Ends the life of the poor victim (not always working if it's computing, but working if it's blocked in the OS) */ + XBT_PUBLIC(void) xbt_thread_cancel(xbt_thread_t thread); /* suicide */ XBT_PUBLIC(void) xbt_thread_exit(void); /* current thread pass control to any possible thread wanting it */