ceph/branches/riccardo/monitor2/script/profonly.pl

13 lines
257 B
Perl
Raw Normal View History

#!/usr/bin/perl
my $rank = shift @ARGV;
my $args = join(' ',@ARGV);
if ($rank == $ENV{MPD_JRANK}) {
$c = "LD_PRELOAD=$ENV{'HOME'}/csl/obsd/src/pmds/gprof-helper.so ./newsyn $args";
} else {
$c = "./newsyn.nopg $args";
}
#print "$rank: $c\n";
system $c;