genode/tool/run/load.inc
Norman Feske 7019b795a6 tool/run: tolerate absence of load_spawn_id
Avoid backtrace in error message if load/fastboot fails at the
boot-loader stage.
2024-11-20 08:58:39 +01:00

10 lines
166 B
PHP

##
# Get the spawn_id of the load process
#
proc load_spawn_id { } {
global load_spawn_id
if {[info exists load_spawn_id]} {
return $load_spawn_id }
return -1
}