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

Unified Diff: src/platform-cygwin.cc

Issue 7379004: Add guard pages in front of platform allocations (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/platform.h ('k') | src/platform-freebsd.cc » ('j') | src/spaces.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/platform-cygwin.cc
===================================================================
--- src/platform-cygwin.cc (revision 8657)
+++ src/platform-cygwin.cc (working copy)
@@ -166,6 +166,11 @@
}
+void OS::Guard(void* address, const size_t size) {
+ mprotect(address, size, PROT_NONE);
Mads Ager (chromium) 2011/07/17 09:47:53 Instead of having identical code in all of these p
Cris Neckar 2011/07/18 23:55:12 Done.
+}
+
+
void OS::Sleep(int milliseconds) {
unsigned int ms = static_cast<unsigned int>(milliseconds);
usleep(1000 * ms);
« no previous file with comments | « src/platform.h ('k') | src/platform-freebsd.cc » ('j') | src/spaces.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698