From 036bc728f2527435c91e18e2eba06a36da8e516c Mon Sep 17 00:00:00 2001 From: cherierm Date: Tue, 6 Nov 2007 13:41:09 +0000 Subject: [PATCH] A distraction, the SIMIX_process_create() function really takes seven parameters. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@4985 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- src/xbt/xbt_sg_synchro.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xbt/xbt_sg_synchro.c b/src/xbt/xbt_sg_synchro.c index bc80b82607..de8521b98f 100644 --- a/src/xbt/xbt_sg_synchro.c +++ b/src/xbt/xbt_sg_synchro.c @@ -45,7 +45,7 @@ xbt_thread_t xbt_thread_create(const char*name,void_f_pvoid_t code, void* param) res->s_process = SIMIX_process_create(name, xbt_thread_create_wrapper, res, SIMIX_host_get_name(SIMIX_host_self()), - 0,/*props*/NULL); + 0,NULL,/*props*/NULL); // free(name); return res; } -- 2.20.1