mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
commented out the munmap stuff again
Original commit message from CVS: commented out the munmap stuff again
This commit is contained in:
parent
a155db2bfb
commit
cc682cae6c
1 changed files with 5 additions and 2 deletions
|
@ -293,7 +293,9 @@ cothread_destroy (cothread_state *thread)
|
||||||
g_free (thread);
|
g_free (thread);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
int res;
|
/* int res;
|
||||||
|
* Replaced with version below until cothreads issues solved */
|
||||||
|
int res = 0;
|
||||||
|
|
||||||
/* doing cleanups of the cothread create */
|
/* doing cleanups of the cothread create */
|
||||||
GST_DEBUG (GST_CAT_COTHREADS, "destroy cothread %d with magic number 0x%x",
|
GST_DEBUG (GST_CAT_COTHREADS, "destroy cothread %d with magic number 0x%x",
|
||||||
|
@ -315,7 +317,8 @@ cothread_destroy (cothread_state *thread)
|
||||||
"munmap cothread slot stack from %p to %p (size 0x%lx)",
|
"munmap cothread slot stack from %p to %p (size 0x%lx)",
|
||||||
thread, thread + COTHREAD_STACKSIZE,
|
thread, thread + COTHREAD_STACKSIZE,
|
||||||
(long) COTHREAD_STACKSIZE);
|
(long) COTHREAD_STACKSIZE);
|
||||||
res = munmap (thread, COTHREAD_STACKSIZE);
|
/* res = munmap (thread, COTHREAD_STACKSIZE);
|
||||||
|
* Commented out waiting for resolution for cothread issue */
|
||||||
if (res != 0)
|
if (res != 0)
|
||||||
{
|
{
|
||||||
switch (res)
|
switch (res)
|
||||||
|
|
Loading…
Reference in a new issue