X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6e0fada8c7781fc70023066302e0915cf91969ae..daf533bcb25008af1fe9992c3a924121e56a8328:/src/smpi/smpif2c.in diff --git a/src/smpi/smpif2c.in b/src/smpi/smpif2c.in index ce1272a111..1d6c4d0703 100755 --- a/src/smpi/smpif2c.in +++ b/src/smpi/smpif2c.in @@ -20,8 +20,7 @@ foreach my $fortran (@ARGV) { print $tmp "#define INTEGER_STAR_8\n"; print $tmp "#endif\n"; print $tmp "#include \n"; - print $tmp "#include \n\n"; - print $tmp "int __attribute__((weak)) __rank(void) {\n static __thread int rank = -1;\n\n if(rank < 0) {\n rank = smpi_global_rank();\n }\n return rank;\n}\n\n"; + print $tmp "#include \n"; while() { chomp; if(/\/\* Common Block Declarations \*\//) { @@ -31,7 +30,7 @@ foreach my $fortran (@ARGV) { if(/^} (.*?);/) { $_ = "}* __attribute__((weak)) $1 = NULL;\n"; } elsif(/^#define\s*(\S*)\s*\(?([^.]*)(\..*?)?\)?$/) { - $_ = "#define $1 $2\[__rank()\]"; + $_ = "#define $1 $2\[smpi_process_index()\]"; if(defined $3) { $_ .= $3; }