final (hopefully) fixes

This commit is contained in:
Sebastian Moser
2024-08-16 15:49:38 +02:00
parent 349b792c18
commit 748b7e4aa1
3 changed files with 28 additions and 11 deletions

View File

@@ -275,7 +275,11 @@ def cmd_starter():
pid = os.getpid()
print("starter process running with pid", pid)
os.system(f"$READ_HELPER {pid}")
#os.system(f"$READ_HELPER {}", pid)
# for some strange reason this does not work
with open("/dev/unkillable", "w") as file:
file.write(str(pid))
#pass
while True:
print("file:", __file__)