[padb] r381 committed - Tidy up some errors reported by perltidy again, mostly missing calls...

padb at googlecode.com padb at googlecode.com
Tue Dec 22 21:31:27 GMT 2009


Revision: 381
Author: apittman
Date: Tue Dec 22 13:31:11 2009
Log: Tidy up some errors reported by perltidy again, mostly missing calls
to return at the end of a function.

http://code.google.com/p/padb/source/detail?r=381

Modified:
  /trunk/src/padb

=======================================
--- /trunk/src/padb	Tue Dec 22 12:03:45 2009
+++ /trunk/src/padb	Tue Dec 22 13:31:11 2009
@@ -2749,7 +2749,6 @@
  sub pbs_get_lqsub {
      my ( $user, $server ) = @_;
      my $job;
-    my $nprocess;
      my $cmd = "qstat -w -n -u $user \@$server";

      my @output = slurp_cmd($cmd);
@@ -5574,7 +5573,6 @@
          my $exe = readlink("/proc/$pid/path/a.out");
          my %cs = gdb_n_send( $gdb, "file $exe" );
          if ( $cs{status} ne 'done' ) {
-            croak("Gdb command file $exe failed");
              return;
          }
      }
@@ -5627,6 +5625,7 @@

      gdb_n_send( $gdb, '-gdb-set print address off' );

+    return;
  }

  sub gdb_attach_async_start {
@@ -5636,7 +5635,6 @@
          my $exe = readlink("/proc/$pid/path/a.out");
          my %cs = gdb_n_send( $gdb, "file $exe" );
          if ( $cs{status} ne 'done' ) {
-            croak("Gdb command file $exe failed");
              return;
          }
      }
@@ -7883,6 +7881,7 @@
              delete $proc->{gdb_handle};
          }
      }
+    return;
  }

  # Try and be clever here, attach to each and every process on this node
@@ -8134,6 +8133,7 @@
      my $thread_list = join q{,}, sort { $a <=> $b } @threads;

      output( $proc->{vp}, $thread_list );
+    return;
  }

  sub kill_proc {




More information about the padb-devel mailing list