How to stop a single thread from commandline

Author
Messages
cfrair0787
New Member
Posts: 1
New Member
    Does anyone know how to stop a single thread from the command line?

    I have tried hcicmd -p processname -c threadname pstop
    but I keep getting an invalid command.

    I'm trying to stop a single thread (not process) from the command line so I can script it.

    cloverleaf.solution
    Posts: 3
      Put the threadname and command in single quote or double quote
      hcicmd -p processName -c "threadname pstop"
      ---