improve process lookup code

This commit is contained in:
Nathan Freitas 2014-04-15 00:24:55 -04:00
parent cd8b7e45db
commit 06d5a6fc09
1 changed files with 3 additions and 3 deletions

View File

@ -73,12 +73,12 @@ public class TorServiceUtils implements TorServiceConstants {
Process procPs = null;
String processKey = '/' + new File(command).getName();
String processKey = new File(command).getName();
procPs = r.exec(SHELL_CMD_PS);
procPs = r.exec(SHELL_CMD_PS + ' ' + processKey); // this is the android ps <name> command
BufferedReader reader = new BufferedReader(new InputStreamReader(procPs.getInputStream()));
String line = null;
String line = reader.readLine(); //read first line "headers" USER PID PPID etc
while ((line = reader.readLine())!=null)
{