Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mono-gdbinit « gdb-pre7.0 « data - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aed152c5e281bacdd3ac914ea8d78f6c8d3ca1e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Loaded by mono-gdb.py

# FIXME: According to gdb docs, this is called _before_ anything is printed
# Got broken by this patch:
# http://sourceware.org/ml/gdb-patches/2008-09/msg00193.html
# FIXME: This seems to cause crashes inside gdb
#define hook-stop
#	   python mono_support.stop_hook ()
#end
define hook-backtrace
	   python mono_support.stop_hook ()
end

define hook-run
	   python mono_support.run_hook ()
end

define xdb
	   python mono_support.stop_hook ()
end