Changeset 213859 in webkit for trunk/Source/JavaScriptCore/tools/CodeProfile.cpp
- Timestamp:
- Mar 13, 2017, 12:09:07 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/tools/CodeProfile.cpp
r204466 r213859 33 33 #include <wtf/text/WTFString.h> 34 34 35 #if OS(DARWIN) 35 #if OS(DARWIN) || OS(LINUX) 36 36 #include <cxxabi.h> 37 37 #include <dlfcn.h> … … 56 56 static const char* symbolName(void* address) 57 57 { 58 #if OS(DARWIN) 58 #if OS(DARWIN) || OS(LINUX) 59 59 Dl_info info; 60 60 if (!dladdr(address, &info) || !info.dli_sname)
Note:
See TracChangeset
for help on using the changeset viewer.