summaryrefslogtreecommitdiff
path: root/src/components/utils/include/utils/back_trace.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/utils/include/utils/back_trace.h')
-rw-r--r--src/components/utils/include/utils/back_trace.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/utils/include/utils/back_trace.h b/src/components/utils/include/utils/back_trace.h
index 7f8912faf..f2410e36b 100644
--- a/src/components/utils/include/utils/back_trace.h
+++ b/src/components/utils/include/utils/back_trace.h
@@ -1,4 +1,4 @@
-/**
+/*
* Copyright (c) 2013, Ford Motor Company
* All rights reserved.
*
@@ -61,10 +61,10 @@ class Backtrace {
// Captured symbols in order from topmost stack frame to last captured
std::vector<std::string> CallStack() const;
- threads::Thread::Id ThreadId() const;
+ threads::PlatformThreadHandle ThreadId() const;
private:
- threads::Thread::Id thread_id_;
+ threads::PlatformThreadHandle thread_id_;
std::vector<void*> backtrace_;
};