mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
no newlines
Original commit message from CVS: no newlines
This commit is contained in:
parent
aa55a0450d
commit
781f489e87
2 changed files with 3 additions and 3 deletions
|
@ -500,10 +500,10 @@ cothread_stackquery (void **stack, glong* stacksize)
|
|||
*stacksize = 0;
|
||||
return FALSE;
|
||||
}
|
||||
GST_DEBUG (GST_CAT_THREAD, "have posix_memalign at %p of size %d\n",
|
||||
GST_DEBUG (GST_CAT_THREAD, "have posix_memalign at %p of size %d",
|
||||
(void *) *stack, STACK_SIZE);
|
||||
GST_DEBUG (GST_CAT_COTHREADS,
|
||||
"Got new cothread stack from %p to %p (size %ld)\n",
|
||||
"Got new cothread stack from %p to %p (size %ld)",
|
||||
*stack, *stack + STACK_SIZE - 1, (long) STACK_SIZE);
|
||||
*stacksize = STACK_SIZE;
|
||||
return TRUE;
|
||||
|
|
|
@ -166,7 +166,7 @@ gst_thread_dispose (GObject *object)
|
|||
|
||||
GST_DEBUG (GST_CAT_THREAD, "Disposing of thread");
|
||||
pthread_attr_getstack (&thread->attr, &stack, (size_t *) &stacksize);
|
||||
GST_DEBUG (GST_CAT_THREAD, "undng posix_memalign at %p of size %ld\n",
|
||||
GST_DEBUG (GST_CAT_THREAD, "undoing posix_memalign at %p of size %ld",
|
||||
stack, stacksize);
|
||||
free (stack);
|
||||
|
||||
|
|
Loading…
Reference in a new issue