From 2ce31992411b602ba1ae1c50841d61f996f7fed7 Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Sat, 8 Nov 2008 20:25:38 +0000 Subject: [PATCH] Disabling the sigsegv provoking new debug message --- cdrskin/cdrskin_timestamp.h | 2 +- libburn/async.c | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/cdrskin/cdrskin_timestamp.h b/cdrskin/cdrskin_timestamp.h index b4fb4f6..654f237 100644 --- a/cdrskin/cdrskin_timestamp.h +++ b/cdrskin/cdrskin_timestamp.h @@ -1 +1 @@ -#define Cdrskin_timestamP "2008.11.08.141734" +#define Cdrskin_timestamP "2008.11.08.202456" diff --git a/libburn/async.c b/libburn/async.c index ef6450c..2367fea 100644 --- a/libburn/async.c +++ b/libburn/async.c @@ -561,9 +561,12 @@ int burn_fifo_abort(struct burn_source_fifo *fs, int flag) if (fs->thread_is_valid <= 0 || fs->thread_handle == NULL) return(2); +#ifdef NIX libdax_msgs_submit(libdax_messenger, -1, 0x00000002, LIBDAX_MSGS_SEV_DEBUG, LIBDAX_MSGS_PRIO_HIGH, "Aborting running burn_source_fifo thread", 0, 0); +#endif /* NIX */ + pt= *((pthread_t *) fs->thread_handle); remove_worker(pt); ret = pthread_cancel(pt);