freebsd-dev/cddl/contrib/dtracetoolkit/Code/Perl/func_malloc.pl

19 lines
186 B
Perl
Raw Normal View History

#!./perl -w
sub func_c {
print "Function C\n";
}
sub func_b {
print "Function B\n";
my $b = "B" x 100_000;
func_c();
}
sub func_a {
print "Function A\n";
func_b();
}
func_a();