From 928b4a071f004385eb61da8354c61866c91956d9 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Wed, 2 May 2012 07:18:35 -0700 Subject: [PATCH] Fixed incorrect cleanup when closing tape with asynch I/O enabled --- sim_tape.c | 1 - 1 file changed, 1 deletion(-) diff --git a/sim_tape.c b/sim_tape.c index 8341089c..91cf3032 100644 --- a/sim_tape.c +++ b/sim_tape.c @@ -368,7 +368,6 @@ if (ctx->asynch_io) { pthread_join (ctx->io_thread, NULL); pthread_mutex_destroy (&ctx->io_lock); pthread_cond_destroy (&ctx->io_cond); - pthread_cond_destroy (&ctx->startup_cond); } return SCPE_OK; #endif