X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7166ae6c85f79709c2d6dedb68b0c39af3222857..46bade924148e45d2fd389682cddc4c3eabdff96:/include/xbt/synchro.h diff --git a/include/xbt/synchro.h b/include/xbt/synchro.h index 92e8d3ae9f..333df9562f 100644 --- a/include/xbt/synchro.h +++ b/include/xbt/synchro.h @@ -32,9 +32,11 @@ SG_BEGIN_DECL() /** \brief Thread data type (opaque structure) */ typedef struct s_xbt_thread_ *xbt_thread_t; - XBT_PUBLIC(xbt_thread_t) xbt_thread_create(void_f_pvoid_t start_routine,void* param); + XBT_PUBLIC(xbt_thread_t) xbt_thread_create(const char *name, void_f_pvoid_t start_routine,void* param); XBT_PUBLIC(void) xbt_thread_exit(); XBT_PUBLIC(xbt_thread_t) xbt_thread_self(void); + XBT_PUBLIC(const char*) xbt_thread_name(xbt_thread_t t); + XBT_PUBLIC(const char*) xbt_thread_self_name(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); /* Ends the life of the poor victim (not always working if it's computing, but working if it's blocked in the OS) */