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

Side by Side Diff: base/shared_memory_android.cc

Issue 12537014: Make SharedMemory track the size that was actually mapped (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 9 months 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 | « base/shared_memory.h ('k') | base/shared_memory_nacl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/shared_memory.h" 5 #include "base/shared_memory.h"
6 6
7 #include <sys/mman.h> 7 #include <sys/mman.h>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "third_party/ashmem/ashmem.h" 10 #include "third_party/ashmem/ashmem.h"
(...skipping 19 matching lines...) Expand all
30 DLOG(ERROR) << "Shared memory creation failed"; 30 DLOG(ERROR) << "Shared memory creation failed";
31 return false; 31 return false;
32 } 32 }
33 33
34 int err = ashmem_set_prot_region(mapped_file_, 34 int err = ashmem_set_prot_region(mapped_file_,
35 PROT_READ | PROT_WRITE | PROT_EXEC); 35 PROT_READ | PROT_WRITE | PROT_EXEC);
36 if (err < 0) { 36 if (err < 0) {
37 DLOG(ERROR) << "Error " << err << " when setting protection of ashmem"; 37 DLOG(ERROR) << "Error " << err << " when setting protection of ashmem";
38 return false; 38 return false;
39 } 39 }
40 created_size_ = options.size; 40 requested_size_ = options.size;
41 41
42 return true; 42 return true;
43 } 43 }
44 44
45 bool SharedMemory::Delete(const std::string& name) { 45 bool SharedMemory::Delete(const std::string& name) {
46 // Like on Windows, this is intentionally returning true as ashmem will 46 // Like on Windows, this is intentionally returning true as ashmem will
47 // automatically releases the resource when all FDs on it are closed. 47 // automatically releases the resource when all FDs on it are closed.
48 return true; 48 return true;
49 } 49 }
50 50
51 bool SharedMemory::Open(const std::string& name, bool read_only) { 51 bool SharedMemory::Open(const std::string& name, bool read_only) {
52 // ashmem doesn't support name mapping 52 // ashmem doesn't support name mapping
53 NOTIMPLEMENTED(); 53 NOTIMPLEMENTED();
54 return false; 54 return false;
55 } 55 }
56 56
57 } // namespace base 57 } // namespace base
OLDNEW
« no previous file with comments | « base/shared_memory.h ('k') | base/shared_memory_nacl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698