#Ways of killing a thread before finish?

1 messages · Page 1 of 1 (latest)

potent haven
#

I'm looking online for ways to kill a thread before it finishes properly. Does thread.free() work, and is it ok?

upper merlin
#

That's not something you usually want to do, because it can lead to other problems, particularly if it's being referenced elsewhere or something is waiting to hear from it.

Can I ask why you want to kill a thread in use?