aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2001-02-23 10:42:15 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-02-23 10:42:15 +0800
commitc2d5b54e94d4a02a4032b5705d23234a236afd53 (patch)
tree0f87a3b96cf9e26f3ac2a327dbcfe3b61a85d15e
parentd18b6e79f1305f0e20168f452665ce2f80b14e31 (diff)
downloadgsoc2013-evolution-c2d5b54e94d4a02a4032b5705d23234a236afd53.tar
gsoc2013-evolution-c2d5b54e94d4a02a4032b5705d23234a236afd53.tar.gz
gsoc2013-evolution-c2d5b54e94d4a02a4032b5705d23234a236afd53.tar.bz2
gsoc2013-evolution-c2d5b54e94d4a02a4032b5705d23234a236afd53.tar.lz
gsoc2013-evolution-c2d5b54e94d4a02a4032b5705d23234a236afd53.tar.xz
gsoc2013-evolution-c2d5b54e94d4a02a4032b5705d23234a236afd53.tar.zst
gsoc2013-evolution-c2d5b54e94d4a02a4032b5705d23234a236afd53.zip
Turned off some of the debug.
2001-02-23 Not Zed <NotZed@Ximian.com> * e-msgport.c : Turned off some of the debug. svn path=/trunk/; revision=8364
-rw-r--r--e-util/ChangeLog1
-rw-r--r--e-util/e-msgport.c4
2 files changed, 3 insertions, 2 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog
index b001b9493e..67fc246621 100644
--- a/e-util/ChangeLog
+++ b/e-util/ChangeLog
@@ -2,6 +2,7 @@
* e-msgport.c (e_thread_destroy): Wait a lot lot longer for
threads to finish.
+ : Turned off some of the debug.
2001-02-08 Not Zed <NotZed@Ximian.com>
diff --git a/e-util/e-msgport.c b/e-util/e-msgport.c
index dabf638b48..eb6e07e24f 100644
--- a/e-util/e-msgport.c
+++ b/e-util/e-msgport.c
@@ -14,7 +14,7 @@
#include <pthread.h>
#define m(x) /* msgport debug */
-#define t(x) x /* thread debug */
+#define t(x) /* thread debug */
void e_dlist_init(EDList *v)
{
@@ -616,7 +616,7 @@ void e_thread_put(EThread *e, EMsg *msg)
&& g_list_length(e->id_list) < e->queue_limit
&& pthread_create(&id, NULL, thread_dispatch, e) == 0) {
struct _thread_info *info = g_malloc0(sizeof(*info));
- printf("created NEW thread %ld\n", id);
+ t(printf("created NEW thread %ld\n", id));
info->id = id;
info->busy = TRUE;
e->id_list = g_list_append(e->id_list, info);