ATLAS Offline Software
Loading...
Searching...
No Matches
python.btload.BTLoad Class Reference
Inheritance diagram for python.btload.BTLoad:
Collaboration diagram for python.btload.BTLoad:

Public Member Functions

 __init__ (self)
 invoke (self, arg, from_tty)

Detailed Description

Load shared libraries from the current backtrace.

Definition at line 37 of file btload.py.

Constructor & Destructor Documentation

◆ __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

Member Function Documentation

◆ 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: