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

Side by Side Diff: runtime/vm/virtual_memory_android.cc

Issue 10823209: Add support for building the Dart VM for Android OS. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Incorporate review feedback from cshapiro Created 8 years, 4 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
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "vm/virtual_memory.h" 5 #include "vm/virtual_memory.h"
6 6
7 #include <sys/mman.h> 7 #include <sys/mman.h>
8 #include <sys/unistd.h>
9 #include <unistd.h> 8 #include <unistd.h>
10 9
11 #include "platform/assert.h" 10 #include "platform/assert.h"
12 #include "platform/utils.h" 11 #include "platform/utils.h"
13 12
14 namespace dart { 13 namespace dart {
15 14
16 // standard MAP_FAILED causes "error: use of old-style cast" as it 15 // standard MAP_FAILED causes "error: use of old-style cast" as it
17 // defines MAP_FAILED as ((void *) -1) 16 // defines MAP_FAILED as ((void *) -1)
18 #undef MAP_FAILED 17 #undef MAP_FAILED
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 prot = PROT_READ | PROT_EXEC; 88 prot = PROT_READ | PROT_EXEC;
90 break; 89 break;
91 case kReadWriteExecute: 90 case kReadWriteExecute:
92 prot = PROT_READ | PROT_WRITE | PROT_EXEC; 91 prot = PROT_READ | PROT_WRITE | PROT_EXEC;
93 break; 92 break;
94 } 93 }
95 return (mprotect(address(), size(), prot) == 0); 94 return (mprotect(address(), size(), prot) == 0);
96 } 95 }
97 96
98 } // namespace dart 97 } // namespace dart
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698