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

Side by Side Diff: mojo/system/memory.cc

Issue 23621056: Initial in-process implementation of some Mojo primitives. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: build fix Created 7 years, 2 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
OLDNEW
(Empty)
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.
4
5 #include "mojo/system/memory.h"
6
7 #include <limits>
8
9 #include "base/logging.h"
10
11 namespace mojo {
12 namespace system {
13
14 bool VerifyUserPointer(const void* pointer, size_t count, size_t size_each) {
15 DCHECK_GT(size_each, 0u);
16 if (count > std::numeric_limits<size_t>::max() / size_each)
17 return false;
18
19 // TODO(vtl): If running in kernel mode, do a full verification. For now, just
20 // check that it's non-null if |size| is nonzero. (A faster user mode
21 // implementation is also possible if this check is skipped.)
22 return count == 0 || !!pointer;
23 }
24
25 } // namespace system
26 } // namespace mojo
OLDNEW
« mojo/mojo.gyp ('K') | « mojo/system/memory.h ('k') | mojo/system/message_pipe.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698