| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 79 } | 79 } | 
| 80 | 80 | 
| 81 | 81 | 
| 82 // Initialize OS class early in the V8 startup. | 82 // Initialize OS class early in the V8 startup. | 
| 83 void OS::SetUp() { | 83 void OS::SetUp() { | 
| 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() { | 
|  | 90   UNIMPLEMENTED(); | 
|  | 91 } | 
|  | 92 | 
|  | 93 | 
| 89 // Returns the accumulated user time for thread. | 94 // Returns the accumulated user time for thread. | 
| 90 int OS::GetUserTime(uint32_t* secs,  uint32_t* usecs) { | 95 int OS::GetUserTime(uint32_t* secs,  uint32_t* usecs) { | 
| 91   UNIMPLEMENTED(); | 96   UNIMPLEMENTED(); | 
| 92   *secs = 0; | 97   *secs = 0; | 
| 93   *usecs = 0; | 98   *usecs = 0; | 
| 94   return 0; | 99   return 0; | 
| 95 } | 100 } | 
| 96 | 101 | 
| 97 | 102 | 
| 98 // Returns current time as the number of milliseconds since | 103 // Returns current time as the number of milliseconds since | 
| (...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 487   UNIMPLEMENTED(); | 492   UNIMPLEMENTED(); | 
| 488 } | 493 } | 
| 489 | 494 | 
| 490 | 495 | 
| 491 void ProfileSampler::Stop() { | 496 void ProfileSampler::Stop() { | 
| 492   UNIMPLEMENTED(); | 497   UNIMPLEMENTED(); | 
| 493 } | 498 } | 
| 494 | 499 | 
| 495 | 500 | 
| 496 } }  // namespace v8::internal | 501 } }  // namespace v8::internal | 
| OLD | NEW | 
|---|