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

Side by Side Diff: src/base/platform/platform-cygwin.cc

Issue 358363002: Move platform abstraction to base library (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: updates Created 6 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 unified diff | Download patch | Annotate | Revision Log
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 Cygwin goes here. For the POSIX-compatible 5 // Platform-specific code for Cygwin goes here. For the POSIX-compatible
6 // parts, the implementation is in platform-posix.cc. 6 // parts, the implementation is in platform-posix.cc.
7 7
8 #include <errno.h> 8 #include <errno.h>
9 #include <pthread.h> 9 #include <pthread.h>
10 #include <semaphore.h> 10 #include <semaphore.h>
11 #include <stdarg.h> 11 #include <stdarg.h>
12 #include <strings.h> // index 12 #include <strings.h> // index
13 #include <sys/mman.h> // mmap & munmap 13 #include <sys/mman.h> // mmap & munmap
14 #include <sys/time.h> 14 #include <sys/time.h>
15 #include <unistd.h> // sysconf 15 #include <unistd.h> // sysconf
16 16
17 #include <cmath> 17 #include <cmath>
18 18
19 #undef MAP_TYPE 19 #undef MAP_TYPE
20 20
21 #include "src/base/macros.h"
22 #include "src/base/platform/platform.h"
21 #include "src/base/win32-headers.h" 23 #include "src/base/win32-headers.h"
22 #include "src/platform.h"
23 #include "src/utils.h"
24 24
25 namespace v8 { 25 namespace v8 {
26 namespace internal { 26 namespace base {
27 27
28 28
29 const char* OS::LocalTimezone(double time, TimezoneCache* cache) { 29 const char* OS::LocalTimezone(double time, TimezoneCache* cache) {
30 if (std::isnan(time)) return ""; 30 if (std::isnan(time)) return "";
31 time_t tv = static_cast<time_t>(std::floor(time/msPerSecond)); 31 time_t tv = static_cast<time_t>(std::floor(time/msPerSecond));
32 struct tm* t = localtime(&tv); 32 struct tm* t = localtime(&tv);
33 if (NULL == t) return ""; 33 if (NULL == t) return "";
34 return tzname[0]; // The location of the timezone string on Cygwin. 34 return tzname[0]; // The location of the timezone string on Cygwin.
35 } 35 }
36 36
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 bool VirtualMemory::ReleaseRegion(void* base, size_t size) { 321 bool VirtualMemory::ReleaseRegion(void* base, size_t size) {
322 return VirtualFree(base, 0, MEM_RELEASE) != 0; 322 return VirtualFree(base, 0, MEM_RELEASE) != 0;
323 } 323 }
324 324
325 325
326 bool VirtualMemory::HasLazyCommits() { 326 bool VirtualMemory::HasLazyCommits() {
327 // TODO(alph): implement for the platform. 327 // TODO(alph): implement for the platform.
328 return false; 328 return false;
329 } 329 }
330 330
331 } } // namespace v8::internal 331 } } // namespace v8::base
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698