| 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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 return false; | 261 return false; |
| 262 } | 262 } |
| 263 | 263 |
| 264 | 264 |
| 265 bool VirtualMemory::Uncommit(void* address, size_t size) { | 265 bool VirtualMemory::Uncommit(void* address, size_t size) { |
| 266 UNIMPLEMENTED(); | 266 UNIMPLEMENTED(); |
| 267 return false; | 267 return false; |
| 268 } | 268 } |
| 269 | 269 |
| 270 | 270 |
| 271 bool VirtualMemory::Reset(void* address, size_t size, bool is_executable) { |
| 272 UNIMPLEMENTED(); |
| 273 return false; |
| 274 } |
| 275 |
| 276 |
| 271 class ThreadHandle::PlatformData : public Malloced { | 277 class ThreadHandle::PlatformData : public Malloced { |
| 272 public: | 278 public: |
| 273 explicit PlatformData(ThreadHandle::Kind kind) { | 279 explicit PlatformData(ThreadHandle::Kind kind) { |
| 274 UNIMPLEMENTED(); | 280 UNIMPLEMENTED(); |
| 275 } | 281 } |
| 276 | 282 |
| 277 void* pd_data_; | 283 void* pd_data_; |
| 278 }; | 284 }; |
| 279 | 285 |
| 280 | 286 |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 445 } | 451 } |
| 446 | 452 |
| 447 | 453 |
| 448 void ProfileSampler::Stop() { | 454 void ProfileSampler::Stop() { |
| 449 UNIMPLEMENTED(); | 455 UNIMPLEMENTED(); |
| 450 } | 456 } |
| 451 | 457 |
| 452 #endif // ENABLE_LOGGING_AND_PROFILING | 458 #endif // ENABLE_LOGGING_AND_PROFILING |
| 453 | 459 |
| 454 } } // namespace v8::internal | 460 } } // namespace v8::internal |
| OLD | NEW |