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

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

Issue 9227007: Version 3.8.6 (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 8 years, 11 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 49
50 50
51 // Give V8 the opportunity to override the default fmod behavior. 51 // Give V8 the opportunity to override the default fmod behavior.
52 double modulo(double x, double y) { 52 double modulo(double x, double y) {
53 UNIMPLEMENTED(); 53 UNIMPLEMENTED();
54 return 0; 54 return 0;
55 } 55 }
56 56
57 57
58 // Initialize OS class early in the V8 startup. 58 // Initialize OS class early in the V8 startup.
59 void OS::Setup() { 59 void OS::SetUp() {
60 // Seed the random number generator. 60 // Seed the random number generator.
61 UNIMPLEMENTED(); 61 UNIMPLEMENTED();
62 } 62 }
63 63
64 64
65 // Returns the accumulated user time for thread. 65 // Returns the accumulated user time for thread.
66 int OS::GetUserTime(uint32_t* secs, uint32_t* usecs) { 66 int OS::GetUserTime(uint32_t* secs, uint32_t* usecs) {
67 UNIMPLEMENTED(); 67 UNIMPLEMENTED();
68 *secs = 0; 68 *secs = 0;
69 *usecs = 0; 69 *usecs = 0;
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after
457 UNIMPLEMENTED(); 457 UNIMPLEMENTED();
458 } 458 }
459 459
460 460
461 void ProfileSampler::Stop() { 461 void ProfileSampler::Stop() {
462 UNIMPLEMENTED(); 462 UNIMPLEMENTED();
463 } 463 }
464 464
465 465
466 } } // namespace v8::internal 466 } } // 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