0

Sometimes threads are started by R package (e.g. in doRedis, see related code). Is there a way how can I list threads spawned within current R session and kill these threads within R? Or can I recognize and kill them in Windows task list?

I am using Rgui in Windows XP.

Tomas
  • 57,621
  • 49
  • 238
  • 373

1 Answers1

-2

In the command prompt window of Windows, try:

taskkill /F /IM processname.exe

to kill all processes with that name. If you have multiple processes with a slightly different name, you can use a wildcard:

taskkill /F /IM partialname*
Smile4ever
  • 3,491
  • 2
  • 26
  • 34