From: coldpeace Date: Tue, 13 Jul 2010 09:08:32 +0000 (+0000) Subject: remove the init_host_bypass from here X-Git-Tag: v3_5~799 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/7b3b549d9b897d1736a5c39c2bad0434ca854f86 remove the init_host_bypass from here git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@8020 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/include/surf/surfxml_parse.h b/include/surf/surfxml_parse.h index 7ff7bfea4a..1af0fd16d5 100644 --- a/include/surf/surfxml_parse.h +++ b/include/surf/surfxml_parse.h @@ -70,9 +70,6 @@ XBT_PUBLIC(int) surf_parse_get_debug(void); XBT_PUBLIC(void) surf_parse_set_debug(int bdebug); XBT_PUBLIC(int) surf_parse_lex_destroy(void); -/* init host and bypass the parser*/ -XBT_PUBLIC(void) init_host_bypass(char* name,double power); - /* What is needed to bypass the parser. */ XBT_PUBLIC_DATA(int_f_void_t) surf_parse; /* Entry-point to the parser. Set this to your function. */ diff --git a/src/surf/surfxml_parse.c b/src/surf/surfxml_parse.c index 0ef9b6420c..8fa98c03d7 100644 --- a/src/surf/surfxml_parse.c +++ b/src/surf/surfxml_parse.c @@ -1167,9 +1167,3 @@ static void add_randomness(void) xbt_dict_set(random_data_list, random_id, (void *) random, NULL); } - -/* Init Host bypassing XML*/ -void init_host_bypass(char* name,double power) -{ - surf_cpu_im_init_bypass(name,power); -}