Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 251334
b: refs/heads/master
c: bdabc7a
h: refs/heads/master
v: v3
  • Loading branch information
Jim Cromie authored and Michal Marek committed May 24, 2011
1 parent 8a273a9 commit ba00d0b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: de7b0b4110795be914e6cafdfec4276b2618cc78
refs/heads/master: bdabc7a345db97b3839c2c3deef40023cf8017ef
8 changes: 5 additions & 3 deletions trunk/scripts/export_report.pl
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,12 @@ sub alphabetically {
sub print_depends_on {
my ($href) = @_;
print "\n";
while (my ($mod, $list) = each %$href) {
for my $mod (sort keys %$href) {
my $list = $href->{$mod};
print "\t$mod:\n";
foreach my $sym (sort numerically @{$list}) {
my ($symbol, $no) = split /\s+/, $sym;
printf("\t\t%-25s\t%-25d\n", $symbol, $no);
printf("\t\t%-25s\n", $symbol);
}
print "\n";
}
Expand Down Expand Up @@ -166,7 +167,8 @@ sub collectcfiles {
it uses. Each listed symbol reports the number of modules using it\n");
print "~"x80 , "\n";
while (my ($thismod, $list) = each %MODULE) {
for my $thismod (sort keys %MODULE) {
my $list = $MODULE{$thismod};
my %depends;
$thismod =~ s/\.mod\.c/.ko/;
print "\t\t\t$thismod\n";
Expand Down

0 comments on commit ba00d0b

Please sign in to comment.