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

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

Issue 10105026: Version 3.10.3 (Closed) Base URL: http://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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
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