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
I have an app which has another graphical eboot.bin in the sandbox path, Is it possible to run that eboot.bin process as a child node? Can I also terminate the parent process and make that child node as the primary?
In windows perspective I'm trying to achieve something like this python code:
importsubprocessimportosimportsysimporttime# Start the child processchild_process=subprocess.Popen(['notepad.exe']) # Replace 'notepad.exe' with your desired program# Wait for a moment to ensure the child process startstime.sleep(2)
print("Parent process ID:", os.getpid())
print("Child process ID:", child_process.pid)
# Terminate the parent processos._exit(0)
The text was updated successfully, but these errors were encountered:
I have an app which has another graphical eboot.bin in the sandbox path, Is it possible to run that eboot.bin process as a child node? Can I also terminate the parent process and make that child node as the primary?
In windows perspective I'm trying to achieve something like this python code:
The text was updated successfully, but these errors were encountered: