author | Chris Jones <jones.chris.g@gmail.com> |
Fri, 05 Nov 2010 02:21:30 -0500 | |
changeset 56911 | 0aa98eae87ed8a874b75ab692c7afa8c2b8f1010 |
parent 56910 | ffb9040a013b85de49d83fe36d8b52609932b0b9 |
child 56912 | 7ca426c55d9be76f8a564b5915bce0ac510f36e1 |
push id | 16725 |
push user | cjones@mozilla.com |
push date | Fri, 05 Nov 2010 07:21:46 +0000 |
treeherder | mozilla-central@0aa98eae87ed [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | blocking-fennec |
bugs | 605362 |
milestone | 2.0b8pre |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/ipc/glue/SharedMemory.h +++ b/ipc/glue/SharedMemory.h @@ -116,19 +116,19 @@ protected: // // but this isn't checked. void Created(size_t aNBytes); void Mapped(size_t aNBytes); void Unmapped(); void Destroyed(); // The size of the shmem region requested in Create(), if - // successful. SharedMemorys that are opened from a foreign handle - // have an alloc size of 0, even though they have access to the - // alloc-size information. + // successful. SharedMemory instances that are opened from a + // foreign handle have an alloc size of 0, even though they have + // access to the alloc-size information. size_t mAllocSize; // The size of the region mapped in Map(), if successful. All // SharedMemorys that are mapped have a non-zero mapped size. size_t mMappedSize; }; } // namespace ipc } // namespace mozilla