source: git/.gdbinit @ c5fac3

spielwiese
Last change on this file since c5fac3 was c11068, checked in by Oleksandr Motsak <motsak@…>, 11 years ago
Better .gdbinit
  • Property mode set to 100644
File size: 374 bytes
Line 
1break dErrorBreak
2break dReportError
3break omReportError
4
5
6### http://sourceware.org/gdb/onlinedocs/gdb/Define.html#Define
7
8# print poly ring
9define pp
10  if $argc > 0
11    print $arg0
12    if $arg0 != 0
13      print *$arg0
14
15      if $argc == 2
16        call p_Write($arg0, $arg1)
17      else
18        call p_Write($arg0, currRing)
19      end
20    end
21  end
22end
23     
24run
25backtrace
Note: See TracBrowser for help on using the repository browser.