123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef BASE_PROFILER_THREAD_DELEGATE_POSIX_H_
- #define BASE_PROFILER_THREAD_DELEGATE_POSIX_H_
- #include "base/base_export.h"
- #include "base/profiler/sampling_profiler_thread_token.h"
- #include "base/profiler/thread_delegate.h"
- #include "base/threading/platform_thread.h"
- namespace base {
- class BASE_EXPORT ThreadDelegatePosix : public ThreadDelegate {
- public:
- static std::unique_ptr<ThreadDelegatePosix> Create(
- SamplingProfilerThreadToken thread_token);
- ~ThreadDelegatePosix() override;
- ThreadDelegatePosix(const ThreadDelegatePosix&) = delete;
- ThreadDelegatePosix& operator=(const ThreadDelegatePosix&) = delete;
-
- PlatformThreadId GetThreadId() const override;
- uintptr_t GetStackBaseAddress() const override;
- std::vector<uintptr_t*> GetRegistersToRewrite(
- RegisterContext* thread_context) override;
- private:
- ThreadDelegatePosix(PlatformThreadId id, uintptr_t base_address);
- const PlatformThreadId thread_id_;
- const uintptr_t thread_stack_base_address_;
- };
- }
- #endif
|