| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 // Seed the random number generator. | 84 // Seed the random number generator. |
| 85 UNIMPLEMENTED(); | 85 UNIMPLEMENTED(); |
| 86 } | 86 } |
| 87 | 87 |
| 88 | 88 |
| 89 void OS::PostSetUp() { | 89 void OS::PostSetUp() { |
| 90 UNIMPLEMENTED(); | 90 UNIMPLEMENTED(); |
| 91 } | 91 } |
| 92 | 92 |
| 93 | 93 |
| 94 void OS::TearDown() { |
| 95 UNIMPLEMENTED(); |
| 96 } |
| 97 |
| 98 |
| 94 // Returns the accumulated user time for thread. | 99 // Returns the accumulated user time for thread. |
| 95 int OS::GetUserTime(uint32_t* secs, uint32_t* usecs) { | 100 int OS::GetUserTime(uint32_t* secs, uint32_t* usecs) { |
| 96 UNIMPLEMENTED(); | 101 UNIMPLEMENTED(); |
| 97 *secs = 0; | 102 *secs = 0; |
| 98 *usecs = 0; | 103 *usecs = 0; |
| 99 return 0; | 104 return 0; |
| 100 } | 105 } |
| 101 | 106 |
| 102 | 107 |
| 103 // Returns current time as the number of milliseconds since | 108 // Returns current time as the number of milliseconds since |
| (...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 492 UNIMPLEMENTED(); | 497 UNIMPLEMENTED(); |
| 493 } | 498 } |
| 494 | 499 |
| 495 | 500 |
| 496 void ProfileSampler::Stop() { | 501 void ProfileSampler::Stop() { |
| 497 UNIMPLEMENTED(); | 502 UNIMPLEMENTED(); |
| 498 } | 503 } |
| 499 | 504 |
| 500 | 505 |
| 501 } } // namespace v8::internal | 506 } } // namespace v8::internal |
| OLD | NEW |