Changeset 20836 in webkit for trunk/JavaScriptCore
- Timestamp:
- Apr 10, 2007, 3:40:00 PM (18 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r20835 r20836 1 2007-04-10 Geoffrey Garen <[email protected]> 2 3 Reviewed by Mark Rowe. 4 5 Fixed last check-in to print in release builds, too. 6 7 * kjs/collector.cpp: 8 (KJS::getPlatformThreadRegisters): 9 1 10 2007-04-10 Geoffrey Garen <[email protected]> 2 11 -
trunk/JavaScriptCore/kjs/collector.cpp
r20835 r20836 501 501 kern_return_t result = thread_get_state(platformThread, flavor, (thread_state_t)®s, &user_count); 502 502 if (result != KERN_SUCCESS) { 503 LOG_ERROR("JavaScript garbage collection failed because thread_get_state returned an error (%d). This is probably the result of running inside Rosetta, which is not supported.", result); 503 WTFReportFatalError(__FILE__, __LINE__, WTF_PRETTY_FUNCTION, 504 "JavaScript garbage collection failed because thread_get_state returned an error (%d). This is probably the result of running inside Rosetta, which is not supported.", result); 504 505 CRASH(); 505 506 }
Note:
See TracChangeset
for help on using the changeset viewer.