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

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

Issue 14362023: Replace math.h with cmath (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: updates Created 7 years, 8 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-cygwin.cc ('k') | src/platform-linux.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 // 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 } 96 }
97 97
98 98
99 int OS::ActivationFrameAlignment() { 99 int OS::ActivationFrameAlignment() {
100 // 16 byte alignment on FreeBSD 100 // 16 byte alignment on FreeBSD
101 return 16; 101 return 16;
102 } 102 }
103 103
104 104
105 const char* OS::LocalTimezone(double time) { 105 const char* OS::LocalTimezone(double time) {
106 if (isnan(time)) return ""; 106 if (std::isnan(time)) return "";
107 time_t tv = static_cast<time_t>(floor(time/msPerSecond)); 107 time_t tv = static_cast<time_t>(floor(time/msPerSecond));
108 struct tm* t = localtime(&tv); 108 struct tm* t = localtime(&tv);
109 if (NULL == t) return ""; 109 if (NULL == t) return "";
110 return t->tm_zone; 110 return t->tm_zone;
111 } 111 }
112 112
113 113
114 double OS::LocalTimeOffset() { 114 double OS::LocalTimeOffset() {
115 time_t tv = time(NULL); 115 time_t tv = time(NULL);
116 struct tm* t = localtime(&tv); 116 struct tm* t = localtime(&tv);
(...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after
691 limit_mutex = CreateMutex(); 691 limit_mutex = CreateMutex();
692 } 692 }
693 693
694 694
695 void OS::TearDown() { 695 void OS::TearDown() {
696 delete limit_mutex; 696 delete limit_mutex;
697 } 697 }
698 698
699 699
700 } } // namespace v8::internal 700 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/platform-cygwin.cc ('k') | src/platform-linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698