Kory@lemmy.ml to linuxmemes@lemmy.world · 7 hours agoTerminating a processlemmy.mlimagemessage-square53fedilinkarrow-up1416arrow-down120file-text
arrow-up1396arrow-down1imageTerminating a processlemmy.mlKory@lemmy.ml to linuxmemes@lemmy.world · 7 hours agomessage-square53fedilinkfile-text
minus-squaremkwt@lemmy.worldlinkfedilinkarrow-up9·7 hours agoTerminateProcess() is pretty reliable, but it doesn’t form part of the C signals stack on Windows like kill -9. So for instance, if you’re doing process control on Python, you need to use a special Windows-only API to access TerminateProcess().
TerminateProcess() is pretty reliable, but it doesn’t form part of the C signals stack on Windows like kill -9. So for instance, if you’re doing process control on Python, you need to use a special Windows-only API to access TerminateProcess().