Fixed incorrect cleanup when closing tape with asynch I/O enabled

This commit is contained in:
Mark Pizzolato 2012-05-02 07:18:35 -07:00
parent ff4f1d3a02
commit 928b4a071f

View file

@ -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