diff --git a/gst/cothreads.c b/gst/cothreads.c index 2639a9cf43..cc208dd2d3 100644 --- a/gst/cothreads.c +++ b/gst/cothreads.c @@ -244,7 +244,8 @@ cothread_destroy (cothread_state *thread) g_free (thread); } else { - munmap ((void *) thread, COTHREAD_STACKSIZE); + /* this doesn't seem to work very well */ + /* munmap ((void *) thread, COTHREAD_STACKSIZE); */ } ctx->threads[threadnum] = NULL;