[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

kocienda kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:16:50 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 01d1dac2a4ecabbf6bb7e60f9924e4b932161804
Author: kocienda <kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Jun 4 22:16:31 2002 +0000

    2002-06-04  Kenneth Kocienda  <kocienda at apple.com>
    
            * WebCore/kwq/kwqdebug.h: Added a line of stderr output into the
            assertion failure code so that we have some idea of what happened.
    
            * WebFoundation/Misc.subproj/WebFoundationDebug.h: Added a line of stderr output into the
            assertion failure code so that we have some idea of what happened.
    
            * WebKit/Misc.subproj/WebKitDebug.h: Added a line of stderr output into
            the assertion failure code so that we have some idea of what happened.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1271 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 0131f47..ae9f970 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,8 @@
+2002-06-04  Kenneth Kocienda  <kocienda at apple.com>
+
+	* kwq/kwqdebug.h: Added a line of stderr output into the 
+        assertion failure code so that we have some idea of what happened.
+
 2002-06-04  Richard Williamson  <rjw at apple.com>
 
     Changes to support progressive image loading.  Currently disabled
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 0131f47..ae9f970 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,8 @@
+2002-06-04  Kenneth Kocienda  <kocienda at apple.com>
+
+	* kwq/kwqdebug.h: Added a line of stderr output into the 
+        assertion failure code so that we have some idea of what happened.
+
 2002-06-04  Richard Williamson  <rjw at apple.com>
 
     Changes to support progressive image loading.  Currently disabled
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 0131f47..ae9f970 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,8 @@
+2002-06-04  Kenneth Kocienda  <kocienda at apple.com>
+
+	* kwq/kwqdebug.h: Added a line of stderr output into the 
+        assertion failure code so that we have some idea of what happened.
+
 2002-06-04  Richard Williamson  <rjw at apple.com>
 
     Changes to support progressive image loading.  Currently disabled
diff --git a/WebCore/kwq/kwqdebug.h b/WebCore/kwq/kwqdebug.h
index b7cc706..c2ba283 100644
--- a/WebCore/kwq/kwqdebug.h
+++ b/WebCore/kwq/kwqdebug.h
@@ -93,6 +93,7 @@ void KWQLog(unsigned int level, const char *file, int line, const char *function
     do { \
         struct rlimit _rlimit = {RLIM_INFINITY, RLIM_INFINITY}; \
         setrlimit(RLIMIT_CORE, &_rlimit); \
+        fprintf(stderr, "assertion failure at %s:%d %s\n", __FILE__, __LINE__, __PRETTY_FUNCTION__); \
         raise(SIGQUIT); \
     } while (0)
 
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 6e25554..dd5b3a8 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,8 @@
+2002-06-04  Kenneth Kocienda  <kocienda at apple.com>
+
+	* Misc.subproj/WebKitDebug.h: Added a line of stderr output into 
+        the assertion failure code so that we have some idea of what happened.
+
 2002-06-04  Richard Williamson  <rjw at apple.com>
 
     Excluded call to new API until everyone has moved to >= 6C48.
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 6e25554..dd5b3a8 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,8 @@
+2002-06-04  Kenneth Kocienda  <kocienda at apple.com>
+
+	* Misc.subproj/WebKitDebug.h: Added a line of stderr output into 
+        the assertion failure code so that we have some idea of what happened.
+
 2002-06-04  Richard Williamson  <rjw at apple.com>
 
     Excluded call to new API until everyone has moved to >= 6C48.
diff --git a/WebKit/Misc.subproj/WebKitDebug.h b/WebKit/Misc.subproj/WebKitDebug.h
index 5c18bfc..eed5532 100644
--- a/WebKit/Misc.subproj/WebKitDebug.h
+++ b/WebKit/Misc.subproj/WebKitDebug.h
@@ -83,6 +83,7 @@ void WebKitLog(unsigned int level, const char *file, int line, const char *funct
     do { \
         struct rlimit _rlimit = {RLIM_INFINITY, RLIM_INFINITY}; \
         setrlimit(RLIMIT_CORE, &_rlimit); \
+        fprintf(stderr, "assertion failure at %s:%d %s\n", __FILE__, __LINE__, __PRETTY_FUNCTION__); \
         raise(SIGQUIT); \
     } while (0)
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list