Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Side by Side Diff: tools/android/purge_ashmem/purge_ashmem.c

Issue 52833002: Purge unpinned ashmem before parsing /proc/$pid/smaps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address Digit and Tony's comments Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <unistd.h>
8
9 #include "../../../third_party/ashmem/ashmem.h"
bulach 2013/11/04 20:22:06 I think the common way is to -I../../.. so this be
Philippe 2013/11/05 09:22:13 Done.
10
11 int main(void) {
12 const int pages_purged = ashmem_purge_all();
13 if (pages_purged < 0) {
14 perror("ashmem_purge_all");
15 return EXIT_FAILURE;
16 }
17 printf("Purged %d pages (%d KBytes)\n",
18 pages_purged, pages_purged * getpagesize() / 1024);
19 return EXIT_SUCCESS;
20 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698