1
0
mirror of https://github.com/open-simh/simh.git synced 2026-02-08 17:31:59 +00:00

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