Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
remove the init_host_bypass from here
authorcoldpeace <coldpeace@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 13 Jul 2010 09:08:32 +0000 (09:08 +0000)
committercoldpeace <coldpeace@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 13 Jul 2010 09:08:32 +0000 (09:08 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@8020 48e7efb5-ca39-0410-a469-dd3cf9ba447f

include/surf/surfxml_parse.h
src/surf/surfxml_parse.c

index 7ff7bfe..1af0fd1 100644 (file)
@@ -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. */
 
index 0ef9b64..8fa98c0 100644 (file)
@@ -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);
-}