| 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 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 460 explicit PlatformData(ThreadHandle::Kind kind) { | 460 explicit PlatformData(ThreadHandle::Kind kind) { |
| 461 Initialize(kind); | 461 Initialize(kind); |
| 462 } | 462 } |
| 463 | 463 |
| 464 void Initialize(ThreadHandle::Kind kind) { | 464 void Initialize(ThreadHandle::Kind kind) { |
| 465 switch (kind) { | 465 switch (kind) { |
| 466 case ThreadHandle::SELF: thread_ = pthread_self(); break; | 466 case ThreadHandle::SELF: thread_ = pthread_self(); break; |
| 467 case ThreadHandle::INVALID: thread_ = kNoThread; break; | 467 case ThreadHandle::INVALID: thread_ = kNoThread; break; |
| 468 } | 468 } |
| 469 } | 469 } |
| 470 |
| 470 pthread_t thread_; // Thread handle for pthread. | 471 pthread_t thread_; // Thread handle for pthread. |
| 471 }; | 472 }; |
| 472 | 473 |
| 473 | 474 |
| 474 ThreadHandle::ThreadHandle(Kind kind) { | 475 ThreadHandle::ThreadHandle(Kind kind) { |
| 475 data_ = new PlatformData(kind); | 476 data_ = new PlatformData(kind); |
| 476 } | 477 } |
| 477 | 478 |
| 478 | 479 |
| 479 void ThreadHandle::Initialize(ThreadHandle::Kind kind) { | 480 void ThreadHandle::Initialize(ThreadHandle::Kind kind) { |
| (...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 756 } | 757 } |
| 757 | 758 |
| 758 // This sampler is no longer the active sampler. | 759 // This sampler is no longer the active sampler. |
| 759 active_sampler_ = NULL; | 760 active_sampler_ = NULL; |
| 760 active_ = false; | 761 active_ = false; |
| 761 } | 762 } |
| 762 | 763 |
| 763 #endif // ENABLE_LOGGING_AND_PROFILING | 764 #endif // ENABLE_LOGGING_AND_PROFILING |
| 764 | 765 |
| 765 } } // namespace v8::internal | 766 } } // namespace v8::internal |
| OLD | NEW |