ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Functions
python.get_inferior Namespace Reference

Functions

def get_inferior ()
 

Function Documentation

◆ get_inferior()

def python.get_inferior.get_inferior ( )
Return the PID of the current inferior, or None.

Definition at line 11 of file get_inferior.py.

11 def get_inferior():
12  """Return the PID of the current inferior, or None."""
13  inf = gdb.selected_inferior()
14  if inf is None: return None
15  return inf.pid
16 
python.get_inferior.get_inferior
def get_inferior()
Definition: get_inferior.py:11