summaryrefslogtreecommitdiffstats
path: root/cmds
diff options
context:
space:
mode:
authorMike Lockwood <lockwood@android.com>2009-10-05 21:17:03 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2009-10-05 21:17:03 -0700
commit0daf3e915d88e9f6bf3c77d829818a687d6eae40 (patch)
tree7016bb0294ee9ad229acd99127a1375f7990620a /cmds
parentef5aed64fb58f39f50e398ecf35affbaa42be9d3 (diff)
parent7fdd67d3867ecbb6457a560b2428a8e9464d8ecd (diff)
downloadframeworks_base-0daf3e915d88e9f6bf3c77d829818a687d6eae40.zip
frameworks_base-0daf3e915d88e9f6bf3c77d829818a687d6eae40.tar.gz
frameworks_base-0daf3e915d88e9f6bf3c77d829818a687d6eae40.tar.bz2
am 7fdd67d3: Merge change I5b650a61 into eclair
Merge commit '7fdd67d3867ecbb6457a560b2428a8e9464d8ecd' into eclair-mr2 * commit '7fdd67d3867ecbb6457a560b2428a8e9464d8ecd': dumpstate: Emit a logcat message at beginning and end of execution.
Diffstat (limited to 'cmds')
-rw-r--r--cmds/dumpstate/dumpstate.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/cmds/dumpstate/dumpstate.c b/cmds/dumpstate/dumpstate.c
index 4dda68c..4a71dc6 100644
--- a/cmds/dumpstate/dumpstate.c
+++ b/cmds/dumpstate/dumpstate.c
@@ -28,6 +28,10 @@
#include <cutils/sockets.h>
#include "private/android_filesystem_config.h"
+#define LOG_NDEBUG 0
+#define LOG_TAG "dumpstate"
+#include <utils/Log.h>
+
#include "dumpstate.h"
static char* const gzip_args[] = { "gzip", "-6", 0 };
@@ -182,6 +186,8 @@ int main(int argc, char *argv[]) {
pid_t pid;
gid_t groups[] = { AID_LOG, AID_SDCARD_RW };
+ LOGI("begin\n");
+
/* set as high priority, and protect from OOM killer */
setpriority(PRIO_PROCESS, 0, -20);
protect_from_oom_killer();
@@ -332,6 +338,8 @@ int main(int argc, char *argv[]) {
/* so gzip will terminate */
close(STDOUT_FILENO);
+ LOGI("done\n");
+
return 0;
}