From c05a4511cdcf829017bcaee95eb3ba0a2900142b Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Sun, 23 Dec 2001 23:36:44 +0000 Subject: [PATCH] Removed the munmap for now Original commit message from CVS: Removed the munmap for now --- gst/cothreads.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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;