Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
the xbt_thread_create function must use a function pointer as first parameter
[simgrid.git] / src / xbt / xbt_sg_synchro.c
index d78d28e..cf4c3b3 100644 (file)
@@ -35,7 +35,7 @@ static int xbt_thread_create_wrapper(int argc, char *argv[]) {
    return 0;
 }
 
-xbt_thread_t xbt_thread_create(const char*name,void_f_pvoid_t* code, void* param)  {
+xbt_thread_t xbt_thread_create(const char*name,void_fp_pvoid_t code, void* param)  {
    xbt_thread_t res = xbt_new0(s_xbt_thread_t,1);
    res->name = xbt_strdup(name);
    res->userparam = param;