[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[tor-commits] [orbot/master] improve process lookup code
commit 06d5a6fc092062ca507d5702120ed38f406ac00e
Author: Nathan Freitas <nathan@xxxxxxxxxxx>
Date: Tue Apr 15 00:24:55 2014 -0400
improve process lookup code
---
src/org/torproject/android/service/TorServiceUtils.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/org/torproject/android/service/TorServiceUtils.java b/src/org/torproject/android/service/TorServiceUtils.java
index 7b6df59..5e87cb5 100644
--- a/src/org/torproject/android/service/TorServiceUtils.java
+++ b/src/org/torproject/android/service/TorServiceUtils.java
@@ -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)
{
_______________________________________________
tor-commits mailing list
tor-commits@xxxxxxxxxxxxxxxxxxxx
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits