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

Side by Side Diff: src/platform-posix.cc

Issue 9537011: Merge r10809 into 3.7 branch (Closed) Base URL: http://v8.googlecode.com/svn/branches/3.7/
Patch Set: Created 8 years, 9 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
« no previous file with comments | « src/platform-openbsd.cc ('k') | src/platform-solaris.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 // limit. 63 // limit.
64 64
65 intptr_t OS::MaxVirtualMemory() { 65 intptr_t OS::MaxVirtualMemory() {
66 struct rlimit limit; 66 struct rlimit limit;
67 int result = getrlimit(RLIMIT_DATA, &limit); 67 int result = getrlimit(RLIMIT_DATA, &limit);
68 if (result != 0) return 0; 68 if (result != 0) return 0;
69 return limit.rlim_cur; 69 return limit.rlim_cur;
70 } 70 }
71 71
72 72
73 intptr_t OS::CommitPageSize() {
74 static intptr_t page_size = getpagesize();
75 return page_size;
76 }
77
78
73 #ifndef __CYGWIN__ 79 #ifndef __CYGWIN__
74 // Get rid of writable permission on code allocations. 80 // Get rid of writable permission on code allocations.
75 void OS::ProtectCode(void* address, const size_t size) { 81 void OS::ProtectCode(void* address, const size_t size) {
76 mprotect(address, size, PROT_READ | PROT_EXEC); 82 mprotect(address, size, PROT_READ | PROT_EXEC);
77 } 83 }
78 84
79 85
80 // Create guard pages. 86 // Create guard pages.
81 void OS::Guard(void* address, const size_t size) { 87 void OS::Guard(void* address, const size_t size) {
82 mprotect(address, size, PROT_NONE); 88 mprotect(address, size, PROT_NONE);
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
485 return ntohl(value); 491 return ntohl(value);
486 } 492 }
487 493
488 494
489 Socket* OS::CreateSocket() { 495 Socket* OS::CreateSocket() {
490 return new POSIXSocket(); 496 return new POSIXSocket();
491 } 497 }
492 498
493 499
494 } } // namespace v8::internal 500 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/platform-openbsd.cc ('k') | src/platform-solaris.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698