static void tryToAcquirePort5000() { thread "Move to port 5000" { repeat with sleep 10 { if (vmPort() == 5000) ret; if (portIsFree(5000)) { print("Trying to move to port 5000..."); restartVMAndroid(); print("...went to port: " + vmPort() + "."); } } } }