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

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

Issue 304153016: Use full include paths everywhere (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 6 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-macos.cc ('k') | src/platform-posix.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Platform-specific code for OpenBSD and NetBSD goes here. For the 5 // Platform-specific code for OpenBSD and NetBSD goes here. For the
6 // POSIX-compatible parts, the implementation is in platform-posix.cc. 6 // POSIX-compatible parts, the implementation is in platform-posix.cc.
7 7
8 #include <pthread.h> 8 #include <pthread.h>
9 #include <semaphore.h> 9 #include <semaphore.h>
10 #include <signal.h> 10 #include <signal.h>
11 #include <sys/time.h> 11 #include <sys/time.h>
12 #include <sys/resource.h> 12 #include <sys/resource.h>
13 #include <sys/syscall.h> 13 #include <sys/syscall.h>
14 #include <sys/types.h> 14 #include <sys/types.h>
15 #include <stdlib.h> 15 #include <stdlib.h>
16 16
17 #include <sys/types.h> // mmap & munmap 17 #include <sys/types.h> // mmap & munmap
18 #include <sys/mman.h> // mmap & munmap 18 #include <sys/mman.h> // mmap & munmap
19 #include <sys/stat.h> // open 19 #include <sys/stat.h> // open
20 #include <fcntl.h> // open 20 #include <fcntl.h> // open
21 #include <unistd.h> // sysconf 21 #include <unistd.h> // sysconf
22 #include <strings.h> // index 22 #include <strings.h> // index
23 #include <errno.h> 23 #include <errno.h>
24 #include <stdarg.h> 24 #include <stdarg.h>
25 25
26 #undef MAP_TYPE 26 #undef MAP_TYPE
27 27
28 #include "v8.h" 28 #include "src/v8.h"
29 29
30 #include "platform.h" 30 #include "src/platform.h"
31 #include "v8threads.h" 31 #include "src/v8threads.h"
32 32
33 33
34 namespace v8 { 34 namespace v8 {
35 namespace internal { 35 namespace internal {
36 36
37 37
38 const char* OS::LocalTimezone(double time, TimezoneCache* cache) { 38 const char* OS::LocalTimezone(double time, TimezoneCache* cache) {
39 if (std::isnan(time)) return ""; 39 if (std::isnan(time)) return "";
40 time_t tv = static_cast<time_t>(std::floor(time/msPerSecond)); 40 time_t tv = static_cast<time_t>(std::floor(time/msPerSecond));
41 struct tm* t = localtime(&tv); 41 struct tm* t = localtime(&tv);
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 return munmap(base, size) == 0; 331 return munmap(base, size) == 0;
332 } 332 }
333 333
334 334
335 bool VirtualMemory::HasLazyCommits() { 335 bool VirtualMemory::HasLazyCommits() {
336 // TODO(alph): implement for the platform. 336 // TODO(alph): implement for the platform.
337 return false; 337 return false;
338 } 338 }
339 339
340 } } // namespace v8::internal 340 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/platform-macos.cc ('k') | src/platform-posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698