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

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: Update documentation 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
« no previous file with comments | « tools/android/android_tools.gyp ('k') | tools/android/purge_ashmem/purge_ashmem.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"
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
« no previous file with comments | « tools/android/android_tools.gyp ('k') | tools/android/purge_ashmem/purge_ashmem.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698