[padb-devel] [padb] r268 committed - When running in full-report mode pass the default stack options on for...

codesite-noreply at google.com codesite-noreply at google.com
Tue Sep 15 22:11:30 BST 2009


Revision: 268
Author: apittman
Date: Tue Sep 15 14:11:07 2009
Log: When running in full-report mode pass the default stack options on for  
the stack part.  Without
this they remain undefined and cause warnings later on.

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

Modified:
  /branches/cleanup/src/padb

=======================================
--- /branches/cleanup/src/padb	Tue Sep 15 13:39:25 2009
+++ /branches/cleanup/src/padb	Tue Sep 15 14:11:07 2009
@@ -4687,8 +4687,9 @@

          push_command('deadlock');

-        my %c = ( strip_above_wait => 0 );
-        push_command( 'stack', 'tree', \%c );
+        my $c = $conf{mode_options}{stack};
+        $c->{strip_above_wait} = 0;
+        push_command( 'stack', 'tree', $c );

          go_job($full_report);
          exit 0;




More information about the padb-devel mailing list