Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
name threads to help debugs
[simgrid.git] / include / xbt / synchro.h
index 227f678..d77af7e 100644 (file)
@@ -32,11 +32,16 @@ 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(pvoid_f_pvoid_t start_routine,void* param);
-  XBT_PUBLIC(void) xbt_thread_exit(int *retcode);
+  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_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,void ** thread_return);
+  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) */
+  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 */
   XBT_PUBLIC(void) xbt_thread_yield(void);
 
 
@@ -55,6 +60,9 @@ SG_BEGIN_DECL()
   XBT_PUBLIC(xbt_cond_t) xbt_cond_init(void);
   XBT_PUBLIC(void)       xbt_cond_wait(xbt_cond_t cond,
                                       xbt_mutex_t mutex);
+  XBT_PUBLIC(void)       xbt_cond_timedwait(xbt_cond_t cond,
+                                           xbt_mutex_t mutex,
+                                           double delay);
   XBT_PUBLIC(void)       xbt_cond_signal(xbt_cond_t cond);
   XBT_PUBLIC(void)       xbt_cond_broadcast(xbt_cond_t cond);
   XBT_PUBLIC(void)       xbt_cond_destroy(xbt_cond_t cond);