From: mquinson Date: Thu, 9 Aug 2007 18:41:44 +0000 (+0000) Subject: Autogenerated, and commiting it was important since the dynar_unit needs to follow... X-Git-Tag: v3.3~1297 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/45bdbfdd527ed9da4c9ffe3c26c49d1f2569b4bd Autogenerated, and commiting it was important since the dynar_unit needs to follow changes in threads API git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@4063 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/dynar_unit.c b/src/dynar_unit.c index 544ccf1b6e..908c612143 100644 --- a/src/dynar_unit.c +++ b/src/dynar_unit.c @@ -459,8 +459,8 @@ XBT_TEST_UNIT("synchronized int",test_dynar_sync_int,"Synchronized dynars of int xbt_test_add0("==== Have a pusher and a popper on the dynar"); d=xbt_dynar_new_sync(sizeof(int),NULL); - pusher = xbt_thread_create(pusher_f,d); - poper = xbt_thread_create(poper_f,d); + pusher = xbt_thread_create("pusher",pusher_f,d); + poper = xbt_thread_create("poper",poper_f,d); xbt_thread_join(pusher); xbt_thread_join(poper); xbt_dynar_free(&d); diff --git a/src/ex_unit.c b/src/ex_unit.c index 1cdfb2c00a..9a2c365b47 100644 --- a/src/ex_unit.c +++ b/src/ex_unit.c @@ -8,7 +8,7 @@ /* GENERATED FILE, DO NOT EDIT */ /*******************************/ -# 405 "xbt/ex.c" +# 417 "xbt/ex.c" #include #include "xbt/ex.h"