diff options
| author | click <none@none> | 2010-09-19 19:52:12 +0200 |
|---|---|---|
| committer | click <none@none> | 2010-09-19 19:52:12 +0200 |
| commit | 7070ab49fec5a48edd3c26a26d6a2976878c5448 (patch) | |
| tree | db4ebcdc529d4dbfb8cf7a03567630681b6d3ba1 | |
| parent | 5de3183180ae323f6ffbef04a6e290a9c2c2f8db (diff) | |
Contrib: make the GDB macro start logging a little bit earlier to catch the important bits
--HG--
branch : trunk
| -rw-r--r-- | contrib/debugger/crashreport.gdb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/debugger/crashreport.gdb b/contrib/debugger/crashreport.gdb index ec3ffb3e9ab..6be4457238d 100644 --- a/contrib/debugger/crashreport.gdb +++ b/contrib/debugger/crashreport.gdb @@ -2,8 +2,9 @@ set logging overwrite on set logging file backtrace.log handle SIG33 pass nostop noprint set pagination 0 -run set logging on +echo \n--- DEBUG: --- START\n\n +run echo \n--- DEBUG: BACKTRACE FULL\n\n backtrace full echo \n--- DEBUG: INFO REGISTERS\n\n @@ -12,5 +13,6 @@ echo \n--- DEBUG: CALLS (x/32i $pc)\n\n x/32i $pc echo \n--- DEBUG: THREAD APPLY ALL BACKTRACE\n thread apply all backtrace +echo \n--- DEBUG: --- STOP\n\n set logging off quit |
