diff options
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/ChangeLog | 1 | ||||
-rw-r--r-- | e-util/e-msgport.c | 4 |
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); |