OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |