Blink roll 25b6bd3a7a131ffe68d809546ad1a20707915cdc:3a503f41ae42e5b79cfcd2ff10e65afde...
[chromium-blink-merge.git] / tools / android / purge_ashmem / purge_ashmem.c
blob0de582dee3cd274ada512e7cae230149adfb2058
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.
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <unistd.h>
9 #include "third_party/ashmem/ashmem.h"
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;
17 printf("Purged %d pages (%d KBytes)\n",
18 pages_purged, pages_purged * getpagesize() / 1024);
19 return EXIT_SUCCESS;