You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The sandbox supports launching with debugger and window arguments that if using 'gdb' for the former, defaults to Xterm for the latter, with gnome-terminal being an allowed alternative. For targets with no X session, let alone Gnome or Xterm, screen could be used as an alternative. The way the process might look would be:
from ossie.utils import sb
c = sb.launch(some_spd, debugger='gdb', window='screen')
In another terminal session, search for the highest PID screen session related to gdb (using ps, etc.) and do: screen -d -R INSTANCE_NAME, where INSTANCE_NAME usually is PID.COMPONENT_NAME_N.
Below is a patch that provides this functionality:
The sandbox supports launching with
debugger
andwindow
arguments that if using'gdb'
for the former, defaults to Xterm for the latter, withgnome-terminal
being an allowed alternative. For targets with no X session, let alone Gnome or Xterm, screen could be used as an alternative. The way the process might look would be:In another terminal session, search for the highest PID screen session related to gdb (using
ps
, etc.) and do:screen -d -R INSTANCE_NAME
, whereINSTANCE_NAME
usually isPID.COMPONENT_NAME_N
.Below is a patch that provides this functionality:
The text was updated successfully, but these errors were encountered: