| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <errno.h> | 7 #include <errno.h> |
| 8 #include <fcntl.h> | 8 #include <fcntl.h> |
| 9 #include <sys/mman.h> | 9 #include <sys/mman.h> |
| 10 #include <sys/stat.h> | 10 #include <sys/stat.h> |
| 11 #include <unistd.h> | 11 #include <unistd.h> |
| 12 | 12 |
| 13 #include <limits> | 13 #include <limits> |
| 14 | 14 |
| 15 #include "base/logging.h" | 15 #include "base/logging.h" |
| 16 | 16 |
| 17 namespace base { | 17 namespace base { |
| 18 | 18 |
| 19 SharedMemory::SharedMemory() | 19 SharedMemory::SharedMemory() |
| 20 : mapped_file_(-1), | 20 : mapped_file_(-1), |
| 21 inode_(0), |
| 21 mapped_size_(0), | 22 mapped_size_(0), |
| 22 inode_(0), | |
| 23 memory_(NULL), | 23 memory_(NULL), |
| 24 read_only_(false), | 24 read_only_(false), |
| 25 created_size_(0) { | 25 requested_size_(0) { |
| 26 } | 26 } |
| 27 | 27 |
| 28 SharedMemory::SharedMemory(SharedMemoryHandle handle, bool read_only) | 28 SharedMemory::SharedMemory(SharedMemoryHandle handle, bool read_only) |
| 29 : mapped_file_(handle.fd), | 29 : mapped_file_(handle.fd), |
| 30 inode_(0), |
| 30 mapped_size_(0), | 31 mapped_size_(0), |
| 31 inode_(0), | |
| 32 memory_(NULL), | 32 memory_(NULL), |
| 33 read_only_(read_only), | 33 read_only_(read_only), |
| 34 created_size_(0) { | 34 requested_size_(0) { |
| 35 } | 35 } |
| 36 | 36 |
| 37 SharedMemory::SharedMemory(SharedMemoryHandle handle, bool read_only, | 37 SharedMemory::SharedMemory(SharedMemoryHandle handle, bool read_only, |
| 38 ProcessHandle process) | 38 ProcessHandle process) |
| 39 : mapped_file_(handle.fd), | 39 : mapped_file_(handle.fd), |
| 40 inode_(0), |
| 40 mapped_size_(0), | 41 mapped_size_(0), |
| 41 inode_(0), | |
| 42 memory_(NULL), | 42 memory_(NULL), |
| 43 read_only_(read_only), | 43 read_only_(read_only), |
| 44 created_size_(0) { | 44 requested_size_(0) { |
| 45 NOTREACHED(); | 45 NOTREACHED(); |
| 46 } | 46 } |
| 47 | 47 |
| 48 SharedMemory::~SharedMemory() { | 48 SharedMemory::~SharedMemory() { |
| 49 Close(); | 49 Close(); |
| 50 } | 50 } |
| 51 | 51 |
| 52 // static | 52 // static |
| 53 bool SharedMemory::IsHandleValid(const SharedMemoryHandle& handle) { | 53 bool SharedMemory::IsHandleValid(const SharedMemoryHandle& handle) { |
| 54 return handle.fd >= 0; | 54 return handle.fd >= 0; |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 | 150 |
| 151 new_handle->fd = new_fd; | 151 new_handle->fd = new_fd; |
| 152 new_handle->auto_close = true; | 152 new_handle->auto_close = true; |
| 153 | 153 |
| 154 if (close_self) | 154 if (close_self) |
| 155 Close(); | 155 Close(); |
| 156 return true; | 156 return true; |
| 157 } | 157 } |
| 158 | 158 |
| 159 } // namespace base | 159 } // namespace base |
| OLD | NEW |