[svn:parrot] r47252 - branches/gc_massacre/src/gc
mikehh at svn.parrot.org
mikehh at svn.parrot.org
Tue Jun 1 10:42:35 UTC 2010
Author: mikehh
Date: Tue Jun 1 10:42:34 2010
New Revision: 47252
URL: https://trac.parrot.org/parrot/changeset/47252
Log:
fix codetest failure - line length
Modified:
branches/gc_massacre/src/gc/system.c
Modified: branches/gc_massacre/src/gc/system.c
==============================================================================
--- branches/gc_massacre/src/gc/system.c Tue Jun 1 10:28:03 2010 (r47251)
+++ branches/gc_massacre/src/gc/system.c Tue Jun 1 10:42:34 2010 (r47252)
@@ -463,11 +463,12 @@
* guaranteed to be live pmcs/buffers, and could very well have
* had their bufstart/vtable destroyed due to the linked list of
* free headers... */
- if ((pmc_min <= ptr) && (ptr < pmc_max) && interp->gc_sys->is_pmc_ptr(interp, (void *)ptr)) {
+ if ((pmc_min <= ptr) && (ptr < pmc_max)
+ && interp->gc_sys->is_pmc_ptr(interp, (void *)ptr)) {
Parrot_gc_mark_PMC_alive(interp, (PMC *)ptr);
}
- else if ((buffer_min <= ptr) && (ptr < buffer_max) &&
- is_buffer_ptr(mem_pools, (void *)ptr)) {
+ else if ((buffer_min <= ptr) && (ptr < buffer_max)
+ && is_buffer_ptr(mem_pools, (void *)ptr)) {
/* ...and since Parrot_gc_mark_PObj_alive doesn't care about bufstart, it
* doesn't really matter if it sets a flag */
Parrot_gc_mark_PObj_alive(interp, (PObj *)ptr);
More information about the parrot-commits
mailing list