Set threads as daemons

This commit is contained in:
Loïc Guégan 2023-08-23 16:25:02 +02:00
parent 0d5c89c595
commit b2dfe62758

View file

@ -85,7 +85,8 @@ class Simulator:
exit(1)
node=Node(src, interfaces, grp)
self.nodes.append(node)
thread=threading.Thread(target=node.run,args=[args]) # There must be "daemon=True" as a parameter, but we removed it to be compatible with older version of python
thread=threading.Thread(target=node.run,args=[args])
thread.setDaemon(True) # May not work on old version of pythons but allow to kill threads when main thread ends (see Node.abort())
thread.start()
def log(self,msg,node=None):