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

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

Issue 9959093: Merged r11194, r11198, r11201, r11214 into trunk branch. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 8 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-macos.cc ('k') | src/platform-openbsd.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 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
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
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
OLDNEW
« no previous file with comments | « src/platform-macos.cc ('k') | src/platform-openbsd.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698