[Debtags-commits] [svn] r941 - in debtags-edit/trunk: . debian src

Enrico Zini debtags-commits@lists.alioth.debian.org
Mon, 20 Jun 2005 08:16:31 +0000


Author: enrico
Date: Mon Jun 20 08:16:30 2005
New Revision: 941

Modified:
   debtags-edit/trunk/README
   debtags-edit/trunk/configure.ac
   debtags-edit/trunk/debian/changelog
   debtags-edit/trunk/src/DebtagsDocument.cc
Log:
Quick dirty fix to remove segfaults

Modified: debtags-edit/trunk/README
==============================================================================
--- debtags-edit/trunk/README	(original)
+++ debtags-edit/trunk/README	Mon Jun 20 08:16:30 2005
@@ -17,7 +17,9 @@
 debtags-edit has been ported to libdebtags1 1.0.3 and it now uses DebtagsSimple
 instead of Debtags::Environment.
 
-Removed segfaults due to bad thread interaction.
+Removed segfaults due to bad thread interaction, but by disabiling Specials
+computation.  I'll need to significantly improve their performance before
+reincluding them again.
 
 
 Compiling from the subversion repository

Modified: debtags-edit/trunk/configure.ac
==============================================================================
--- debtags-edit/trunk/configure.ac	(original)
+++ debtags-edit/trunk/configure.ac	Mon Jun 20 08:16:30 2005
@@ -1,6 +1,6 @@
 dnl Process this file with autoconf to produce a configure script.
 
-AC_INIT(debtags-edit, 1.0, [enrico@debian.org])
+AC_INIT(debtags-edit, 1.0.1, [enrico@debian.org])
 AC_CONFIG_SRCDIR([configure.ac])
 AM_CONFIG_HEADER(config.h)
 AM_INIT_AUTOMAKE

Modified: debtags-edit/trunk/debian/changelog
==============================================================================
--- debtags-edit/trunk/debian/changelog	(original)
+++ debtags-edit/trunk/debian/changelog	Mon Jun 20 08:16:30 2005
@@ -1,3 +1,11 @@
+debtags-edit (1.0.1) experimental; urgency=low
+
+  * Disabled specials generation as a quick-fix to frequent crashes.  I will
+    need to significantly improve its performance before reactivating it
+    again.
+
+ -- Enrico Zini <enrico@debian.org>  Mon, 20 Jun 2005 10:14:08 +0200
+
 debtags-edit (1.0) experimental; urgency=low
 
   * Bumped version to 1.0

Modified: debtags-edit/trunk/src/DebtagsDocument.cc
==============================================================================
--- debtags-edit/trunk/src/DebtagsDocument.cc	(original)
+++ debtags-edit/trunk/src/DebtagsDocument.cc	Mon Jun 20 08:16:30 2005
@@ -123,6 +123,7 @@
 
 void DebtagsDocument::regenerateSpecials() throw ()
 {
+	return;
 	{
 		MutexLock lock(specialsMutex);
 		if (hasSpecials == GENERATING)