OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 return mbase; | 252 return mbase; |
253 } | 253 } |
254 | 254 |
255 | 255 |
256 void OS::Free(void* buf, const size_t length) { | 256 void OS::Free(void* buf, const size_t length) { |
257 // TODO(1240712): munmap has a return value which is ignored here. | 257 // TODO(1240712): munmap has a return value which is ignored here. |
258 munmap(buf, length); | 258 munmap(buf, length); |
259 } | 259 } |
260 | 260 |
261 | 261 |
262 void OS::Sleep(int miliseconds) { | 262 void OS::Sleep(int milliseconds) { |
263 usleep(1000 * miliseconds); | 263 usleep(1000 * milliseconds); |
264 } | 264 } |
265 | 265 |
266 | 266 |
267 void OS::Abort() { | 267 void OS::Abort() { |
268 // Redirect to std abort to signal abnormal program termination | 268 // Redirect to std abort to signal abnormal program termination |
269 abort(); | 269 abort(); |
270 } | 270 } |
271 | 271 |
272 | 272 |
273 void OS::DebugBreak() { | 273 void OS::DebugBreak() { |
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
653 } | 653 } |
654 | 654 |
655 // This sampler is no longer the active sampler. | 655 // This sampler is no longer the active sampler. |
656 active_sampler_ = NULL; | 656 active_sampler_ = NULL; |
657 active_ = false; | 657 active_ = false; |
658 } | 658 } |
659 | 659 |
660 #endif // ENABLE_LOGGING_AND_PROFILING | 660 #endif // ENABLE_LOGGING_AND_PROFILING |
661 | 661 |
662 } } // namespace v8::internal | 662 } } // namespace v8::internal |
OLD | NEW |