From 06600c9e32f7526de1c407fafb2acc21d45a7b0f Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Fri, 23 Nov 2012 09:40:34 +0100 Subject: [PATCH] Revert "use MSG_init instead of xbt_init since someone wrongly create mutexes" This reverts commit becf2ff78c488808dcb55883271ca759ac0ca492 since it's not needed anymore. --- tools/sg_unit_extractor.pl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/sg_unit_extractor.pl b/tools/sg_unit_extractor.pl index 41ab6cb84d..66ef7d7dcd 100755 --- a/tools/sg_unit_extractor.pl +++ b/tools/sg_unit_extractor.pl @@ -120,7 +120,6 @@ sub process_one($) { open OUT,">${outdir}simgrid_units_main.c" || die "$progname: Cannot open main file '${outdir}simgrid_units_main.c': $!\n"; print OUT $GENERATED; print OUT "#include \n\n"; - print OUT "#include \"msg/msg.h\" /* MSG_init, xbt_init is not enough when using synchronized dynars */\n"; print OUT "#include \"xbt.h\"\n\n"; print OUT "extern xbt_test_unit_t _xbt_current_unit;\n\n"; print OUT "/* SGU: BEGIN PROTOTYPES */\n"; @@ -138,7 +137,7 @@ int main(int argc, char *argv[]) { /* SGU: BEGIN SUITES DECLARATION */ /* SGU: END SUITES DECLARATION */ - MSG_init(&argc,argv); + xbt_init(&argc,argv); /* Search for the tests to do */ selection[0]='\\0'; -- 2.20.1