Kory@lemmy.ml to linuxmemes@lemmy.world · 7 hours agoTerminating a processlemmy.mlimagemessage-square52fedilinkarrow-up1414arrow-down120file-text
arrow-up1394arrow-down1imageTerminating a processlemmy.mlKory@lemmy.ml to linuxmemes@lemmy.world · 7 hours agomessage-square52fedilinkfile-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().