<rdar://problem/
5077892> In RapidWeaver 3.5.1, a crash occurs when attempting to load Safari Bookmarks in iMedia Browser
* platform/mac/ThreadCheck.mm:
(WebCore::_WebCoreThreadViolationCheck):
Change default on Tiger to NSLog rather than raise an exception.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@20390
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2007-03-22 David Harrison <harrison@apple.com>
+
+ Reviewed by Geoff, Darin.
+
+ <rdar://problem/5077892> In RapidWeaver 3.5.1, a crash occurs when attempting to load Safari Bookmarks in iMedia Browser
+
+ * platform/mac/ThreadCheck.mm:
+ (WebCore::_WebCoreThreadViolationCheck):
+ Change default on Tiger to NSLog rather than raise an exception.
+
2007-03-22 Darin Adler <darin@apple.com>
Reviewed by Brady.
{
static bool fetchDefault = true;
static bool performThreadCheck = true;
+#ifdef BUILDING_ON_TIGER
+ static bool threadViolationIsException = false;
+#else
static bool threadViolationIsException = true;
+#endif
+
if (fetchDefault) {
NSString *threadCheckLevel = [[NSUserDefaults standardUserDefaults] objectForKey:@"WebCoreThreadCheck"];
if ([threadCheckLevel isEqualToString:@"None"])