Changeset 162266 in webkit for trunk/Source/JavaScriptCore/tools
- Timestamp:
- Jan 18, 2014, 11:41:58 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/tools/CodeProfile.cpp
r157653 r162266 34 34 #include <wtf/text/WTFString.h> 35 35 36 #if PLATFORM(MAC)36 #if OS(DARWIN) 37 37 #include <cxxabi.h> 38 38 #include <dlfcn.h> … … 57 57 static const char* symbolName(void* address) 58 58 { 59 #if PLATFORM(MAC)59 #if OS(DARWIN) 60 60 Dl_info info; 61 61 if (!dladdr(address, &info) || !info.dli_sname) … … 124 124 return; 125 125 126 #if PLATFORM(MAC) && CPU(X86_64)126 #if OS(DARWIN) && CPU(X86_64) 127 127 // Walk up the stack. 128 128 pc = framePointer[1];
Note:
See TracChangeset
for help on using the changeset viewer.