Load shared libraries from the current backtrace.
Definition at line 37 of file btload.py.
◆ __init__()
| python.btload.BTLoad.__init__ |
( |
| self | ) |
|
Definition at line 40 of file btload.py.
40 def __init__ (self):
41 super (BTLoad, self).__init__ ("btload", gdb.COMMAND_FILES)
42 return
43
◆ invoke()
| python.btload.BTLoad.invoke |
( |
| self, |
|
|
| arg, |
|
|
| from_tty ) |
Definition at line 44 of file btload.py.
44 def invoke (self, arg, from_tty):
45 limit = 100
46 args = arg.split()
47 if len(args) > 0:
48 limit = int(args[0])
49 btload (limit)
50 return
51
The documentation for this class was generated from the following file: