[svn:parrot] r44173 - branches/sys_mem_reduce/src
bacek at svn.parrot.org
bacek at svn.parrot.org
Fri Feb 19 13:26:43 UTC 2010
Author: bacek
Date: Fri Feb 19 13:26:43 2010
New Revision: 44173
URL: https://trac.parrot.org/parrot/changeset/44173
Log:
Switch TSQ to internal allocations.
Modified:
branches/sys_mem_reduce/src/tsq.c
Modified: branches/sys_mem_reduce/src/tsq.c
==============================================================================
--- branches/sys_mem_reduce/src/tsq.c Fri Feb 19 13:26:23 2010 (r44172)
+++ branches/sys_mem_reduce/src/tsq.c Fri Feb 19 13:26:43 2010 (r44173)
@@ -374,7 +374,7 @@
queue_init(UINTVAL prio)
{
ASSERT_ARGS(queue_init)
- QUEUE * const queue = mem_allocate_typed(QUEUE);
+ QUEUE * const queue = mem_internal_allocate_typed(QUEUE);
queue->head = queue->tail = NULL;
queue->max_prio = prio;
More information about the parrot-commits
mailing list