Update .DEPS.git
[chromium-blink-merge.git] / base / shared_memory_android.cc
bloba5beceb5c5bb501b497f1be99748f00e67eea278
1 // Copyright (c) 2011 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 "base/shared_memory.h"
7 #include <sys/mman.h>
9 #include "base/logging.h"
10 #include "third_party/ashmem/ashmem.h"
12 namespace base {
14 // For Android, we use ashmem to implement SharedMemory. ashmem_create_region
15 // will automatically pin the region. We never explicitly call pin/unpin. When
16 // all the file descriptors from different processes associated with the region
17 // are closed, the memory buffer will go away.
19 bool SharedMemory::Create(const SharedMemoryCreateOptions& options) {
20 DCHECK_EQ(-1, mapped_file_ );
22 // "name" is just a label in ashmem. It is visible in /proc/pid/maps.
23 mapped_file_ = ashmem_create_region(
24 options.name == NULL ? "" : options.name->c_str(),
25 options.size);
26 if (-1 == mapped_file_) {
27 DLOG(ERROR) << "Shared memory creation failed";
28 return false;
31 int err = ashmem_set_prot_region(mapped_file_,
32 PROT_READ | PROT_WRITE | PROT_EXEC);
33 if (err < 0) {
34 DLOG(ERROR) << "Error " << err << " when setting protection of ashmem";
35 return false;
37 created_size_ = options.size;
39 return true;
42 bool SharedMemory::Delete(const std::string& name) {
43 // Like on Windows, this is intentionally returning true as ashmem will
44 // automatically releases the resource when all FDs on it are closed.
45 return true;
48 bool SharedMemory::Open(const std::string& name, bool read_only) {
49 // ashmem doesn't support name mapping
50 NOTIMPLEMENTED();
51 return false;
54 } // namespace base