summaryrefslogtreecommitdiffstats
path: root/.gdbinit
diff options
context:
space:
mode:
authorManos Pitsidianakis <el13635@mail.ntua.gr>2019-11-21 15:44:18 +0200
committerManos Pitsidianakis <el13635@mail.ntua.gr>2019-11-21 15:44:18 +0200
commit05d9ca6e0d10fc805c99e494d66bc9b7b5f0e319 (patch)
treecfd116bd7a099996446128fe2d71001748297cf5 /.gdbinit
parent022e1f437d0eb1531580cc08ca6bb574dab14c3b (diff)
small fixes
Diffstat (limited to '.gdbinit')
-rw-r--r--.gdbinit37
1 files changed, 0 insertions, 37 deletions
diff --git a/.gdbinit b/.gdbinit
index c649c379..c4689704 100644
--- a/.gdbinit
+++ b/.gdbinit
@@ -1,42 +1,5 @@
set language rust
source ~/.gdbinit
break rust_panic
-break core::option::expect_failed::h4927e1fef06c4878
-break core::panicking::panic
-break libcore/panicking.rs:58
-break libcore/result.rs:945
set auto-load python-scripts
-break melib/src/mailbox/thread.rs:1010
set print thread-events off
-
-#python
-#import os
-#import sys
-#
-#sys.path.insert(0, os.getcwd() + '/scripts/gdb_meli/')
-#import gdb
-#import gdb_meli
-#
-#print(gdb_meli.__file__)
-#
-#help(gdb_meli)
-##from gdb_meli import build_pretty_printer
-##print(gdb.objfiles()[0].filename)
-##gdb_meli.register_pretty_printer(gdb)
-##gdb.printing.register_pretty_printer(
-## gdb.current_objfile(),
-## gdb_meli.build_pretty_printer())
-#end
-python
-
-import sys, os
-
-sys.path.insert(0, os.getcwd() + '/scripts/gdb_meli/')
-
-
-import gdb_meli, gdb
-#gdb_meli.register_meli_printers(gdb)
-#gdb.printing.register_pretty_printer(
-# gdb.current_objfile(),
-# gdb_meli.build_meli_printer())
-end