proxygen
gdb.FiberPrintLimitCommand Class Reference
Inheritance diagram for gdb.FiberPrintLimitCommand:

Public Member Functions

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

Detailed Description

Definition at line 141 of file gdb.py.

Constructor & Destructor Documentation

def gdb.FiberPrintLimitCommand.__init__ (   self)

Definition at line 142 of file gdb.py.

142  def __init__(self):
143  super(FiberPrintLimitCommand, self).__init__(
144  "fiber-print-limit", gdb.COMMAND_USER)
145 
def __init__(self)
Definition: gdb.py:142

Member Function Documentation

def gdb.FiberPrintLimitCommand.invoke (   self,
  arg,
  from_tty 
)

Definition at line 146 of file gdb.py.

146  def invoke(self, arg, from_tty):
147  if not arg:
148  print("New limit has to be passed to 'fiber_print_limit' command")
149  return
150  FiberManagerPrinter.fiber_print_limit = int(arg)
151  print("New fiber limit for FiberManager printer set to " +
152  str(FiberManagerPrinter.fiber_print_limit))
153 
154 
def invoke(self, arg, from_tty)
Definition: gdb.py:146

The documentation for this class was generated from the following file: